Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | fixed comment formatting in RM_CreateCommand | Dvir Volk | 2016-05-10 | 1 | -13/+13 | |
| | ||||||
* | another small comment fix | Dvir Volk | 2016-05-10 | 1 | -1/+2 | |
| | ||||||
* | fixed comment | Dvir Volk | 2016-05-10 | 1 | -1/+3 | |
| | ||||||
* | second attempt at vector formtting | Dvir Volk | 2016-05-10 | 1 | -1/+12 | |
| | ||||||
* | Modules: add ZADD_INCR flag to zset increment API. | antirez | 2016-05-10 | 1 | -0/+1 | |
| | ||||||
* | typo: %s/Emtpy/Empty/g | Itamar Haber | 2016-05-10 | 1 | -5/+5 | |
| | ||||||
* | Modules: command <-> core interface modified to get flags & keys. | antirez | 2016-05-10 | 1 | -7/+133 | |
| | ||||||
* | tiny typo in Redis Modules API documentation | Ramon Snir | 2016-05-10 | 1 | -1/+1 | |
| | ||||||
* | fixed return value of HashGet (and a slight error in the documentation) | Dvir Volk | 2016-05-10 | 1 | -2/+2 | |
| | ||||||
* | Modules: Hash API defines made more uniform. | antirez | 2016-05-10 | 1 | -30/+30 | |
| | ||||||
* | Modules: Hash type API WIP #2. | antirez | 2016-05-10 | 1 | -0/+51 | |
| | ||||||
* | Modules: Hash type API WIP #1. | antirez | 2016-05-10 | 1 | -6/+159 | |
| | ||||||
* | Modules: a few fixes for the zset iterator. | antirez | 2016-05-10 | 1 | -2/+2 | |
| | ||||||
* | Modules: postponed array lengths. | antirez | 2016-05-10 | 1 | -3/+80 | |
| | ||||||
* | Modules: zset lex iterator #3. | antirez | 2016-05-10 | 1 | -2/+8 | |
| | ||||||
* | Modules: zset lex iterator #2. | antirez | 2016-05-10 | 1 | -0/+20 | |
| | ||||||
* | Modules: zset lex iterator #1. | antirez | 2016-05-10 | 1 | -2/+70 | |
| | ||||||
* | Modules: zset iterator redesign #1. | antirez | 2016-05-10 | 1 | -73/+65 | |
| | ||||||
* | Modules: fix top comments to be user-facing doc quality. About 33% done. | antirez | 2016-05-10 | 1 | -51/+137 | |
| | ||||||
* | Modules: sorted set iterators WIP #3. | antirez | 2016-05-10 | 1 | -20/+104 | |
| | ||||||
* | Modules: put zset iterator current element in auto memory pool. | antirez | 2016-05-10 | 1 | -2/+6 | |
| | ||||||
* | Modules: sorted set iterators WIP #2. | antirez | 2016-05-10 | 1 | -3/+31 | |
| | ||||||
* | Modules: sorted set iterators WIP. | antirez | 2016-05-10 | 1 | -1/+141 | |
| | ||||||
* | Remove useless space. | antirez | 2016-05-10 | 1 | -1/+1 | |
| | ||||||
* | Modules: ZSET API WIP #4. | antirez | 2016-05-10 | 1 | -0/+30 | |
| | ||||||
* | Modules: ZSET API WIP #3. | antirez | 2016-05-10 | 1 | -0/+18 | |
| | ||||||
* | Modules: ZSET API WIP #2. | antirez | 2016-05-10 | 1 | -1/+86 | |
| | ||||||
* | Modules: ZSET API WIP. | antirez | 2016-05-10 | 1 | -1/+14 | |
| | ||||||
* | Modules: expire API and documentation. | antirez | 2016-05-10 | 1 | -0/+33 | |
| | ||||||
* | Modules: RedisModule_ReplyWithCallReply(). | antirez | 2016-05-10 | 1 | -1/+9 | |
| | ||||||
* | modules/RM_StringTruncate: correct reallocate condition | Sun He | 2016-05-10 | 1 | -1/+1 | |
| | ||||||
* | modules/RM_OpenKey: avoid decrRefCount obj twice | Sun He | 2016-05-10 | 1 | -1/+0 | |
| | ||||||
* | modules/RM_StringSet: set key->value | Sun He | 2016-05-10 | 1 | -0/+1 | |
| | ||||||
* | modules: correct protolen | Sun He | 2016-05-10 | 1 | -4/+4 | |
| | ||||||
* | Add the last break for consistency in moduleCreateCallReplyFromProto. | antirez | 2016-05-10 | 1 | -1/+1 | |
| | ||||||
* | fixed case in moduleCreateCallReplyFromProto | Dvir Volk | 2016-05-10 | 1 | -4/+4 | |
| | ||||||
* | renamed RedisModule_ReplyWithNull to RM_ReplyWithNull to fix compilation | Dvir Volk | 2016-05-10 | 1 | -1/+1 | |
| | ||||||
* | Modules: RedisModule_ReplyWithNull() implemented. | antirez | 2016-05-10 | 1 | -0/+7 | |
| | ||||||
* | Log loadmodule dlopen() errors. | Yossi Gottlieb | 2016-05-10 | 1 | -1/+4 | |
| | ||||||
* | Modules: avoid conflict between modules func pointers and dynamic symbols. | antirez | 2016-05-10 | 1 | -87/+93 | |
| | | | | | | | | | | | | | | | | | | | | In modules we fill a set of function pointers defined in redismodule.h, populating a set of APIs that are callable from the module. We use this manual process instead of resorting to dynamic linking so that we have exact control on how we pass the API to the module, and we can even pass different functions for the same name, depending on the API version declared by the module. However if the function pointers in redismodule.h and the functions defined in module.c have the same name, they conflict since the core exports the symbols to the module. There is probably some compiler flags trick to avoid this, but in order to be safer in the future and be more easily compatible with different builidng systems, this commit changes the internal function prefix from RedisModule_ to RM_, so for example: RM_StringSet() will be exported as RedisModule_StringSet() | |||||
* | Modules: remove warnings due to void/function pointer conversion. | antirez | 2016-05-10 | 1 | -6/+7 | |
| | ||||||
* | Modules: first preview 31 March 2016. | antirez | 2016-05-10 | 1 | -0/+1384 | |