summaryrefslogtreecommitdiff
path: root/src/module.c
Commit message (Collapse)AuthorAgeFilesLines
...
* fixed comment formatting in RM_CreateCommandDvir Volk2016-05-101-13/+13
|
* another small comment fixDvir Volk2016-05-101-1/+2
|
* fixed commentDvir Volk2016-05-101-1/+3
|
* second attempt at vector formttingDvir Volk2016-05-101-1/+12
|
* Modules: add ZADD_INCR flag to zset increment API.antirez2016-05-101-0/+1
|
* typo: %s/Emtpy/Empty/gItamar Haber2016-05-101-5/+5
|
* Modules: command <-> core interface modified to get flags & keys.antirez2016-05-101-7/+133
|
* tiny typo in Redis Modules API documentationRamon Snir2016-05-101-1/+1
|
* fixed return value of HashGet (and a slight error in the documentation)Dvir Volk2016-05-101-2/+2
|
* Modules: Hash API defines made more uniform.antirez2016-05-101-30/+30
|
* Modules: Hash type API WIP #2.antirez2016-05-101-0/+51
|
* Modules: Hash type API WIP #1.antirez2016-05-101-6/+159
|
* Modules: a few fixes for the zset iterator.antirez2016-05-101-2/+2
|
* Modules: postponed array lengths.antirez2016-05-101-3/+80
|
* Modules: zset lex iterator #3.antirez2016-05-101-2/+8
|
* Modules: zset lex iterator #2.antirez2016-05-101-0/+20
|
* Modules: zset lex iterator #1.antirez2016-05-101-2/+70
|
* Modules: zset iterator redesign #1.antirez2016-05-101-73/+65
|
* Modules: fix top comments to be user-facing doc quality. About 33% done.antirez2016-05-101-51/+137
|
* Modules: sorted set iterators WIP #3.antirez2016-05-101-20/+104
|
* Modules: put zset iterator current element in auto memory pool.antirez2016-05-101-2/+6
|
* Modules: sorted set iterators WIP #2.antirez2016-05-101-3/+31
|
* Modules: sorted set iterators WIP.antirez2016-05-101-1/+141
|
* Remove useless space.antirez2016-05-101-1/+1
|
* Modules: ZSET API WIP #4.antirez2016-05-101-0/+30
|
* Modules: ZSET API WIP #3.antirez2016-05-101-0/+18
|
* Modules: ZSET API WIP #2.antirez2016-05-101-1/+86
|
* Modules: ZSET API WIP.antirez2016-05-101-1/+14
|
* Modules: expire API and documentation.antirez2016-05-101-0/+33
|
* Modules: RedisModule_ReplyWithCallReply().antirez2016-05-101-1/+9
|
* modules/RM_StringTruncate: correct reallocate conditionSun He2016-05-101-1/+1
|
* modules/RM_OpenKey: avoid decrRefCount obj twiceSun He2016-05-101-1/+0
|
* modules/RM_StringSet: set key->valueSun He2016-05-101-0/+1
|
* modules: correct protolenSun He2016-05-101-4/+4
|
* Add the last break for consistency in moduleCreateCallReplyFromProto.antirez2016-05-101-1/+1
|
* fixed case in moduleCreateCallReplyFromProtoDvir Volk2016-05-101-4/+4
|
* renamed RedisModule_ReplyWithNull to RM_ReplyWithNull to fix compilationDvir Volk2016-05-101-1/+1
|
* Modules: RedisModule_ReplyWithNull() implemented.antirez2016-05-101-0/+7
|
* Log loadmodule dlopen() errors.Yossi Gottlieb2016-05-101-1/+4
|
* Modules: avoid conflict between modules func pointers and dynamic symbols.antirez2016-05-101-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.antirez2016-05-101-6/+7
|
* Modules: first preview 31 March 2016.antirez2016-05-101-0/+1384