summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* | | 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: REDISMODULE_POSTPONED_ARRAY_LEN doc.antirez2016-05-101-0/+45
| | |
* | | Modules: Hash API defines made more uniform.antirez2016-05-103-42/+38
| | |
* | | Modules: Hash type API WIP #2.antirez2016-05-103-4/+60
| | |
* | | Modules: Hash type API WIP #1.antirez2016-05-104-6/+212
| | |
* | | Modules: a few fixes for the zset iterator.antirez2016-05-102-6/+13
| | |
* | | Modules: postponed array lengths.antirez2016-05-102-3/+86
| | |
* | | Modules: zset lex iterator #3.antirez2016-05-103-3/+49
| | |
* | | Modules: zset lex iterator #2.antirez2016-05-103-6/+30
| | |
* | | Modules: zset lex iterator #1.antirez2016-05-103-4/+77
| | |
* | | Modules: zset iterator redesign #1.antirez2016-05-104-106/+76
| | |
* | | Simple Ruby script to generate reference doc added.antirez2016-05-101-0/+38
| | |
* | | 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-104-24/+134
| | |
* | | Modules: put zset iterator current element in auto memory pool.antirez2016-05-101-2/+6
| | |
* | | Modules: sorted set iterators WIP #2.antirez2016-05-103-4/+34
| | |
* | | Modules: sorted set iterators WIP.antirez2016-05-104-1/+221
| | |
* | | Remove useless space.antirez2016-05-101-1/+1
| | |
* | | Modules: ZSET API WIP #4.antirez2016-05-102-1/+33
| | |
* | | Modules: ZSET API WIP #3.antirez2016-05-102-0/+24
| | |
* | | Modules: ZSET API WIP #2.antirez2016-05-102-1/+93
| | |
* | | Modules: ZSET API WIP.antirez2016-05-102-5/+14
| | |
* | | Modules: expire API and documentation.antirez2016-05-104-0/+101
| | |
* | | Modules: RedisModule_ReplyWithCallReply().antirez2016-05-104-1/+31
| | |
* | | Stops SPLICE from accepting negative countsItamar Haber2016-05-101-2/+6
| | |
* | | 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-102-0/+9
| | |
* | | fixed the doc with a right function nameDvir Volk2016-05-101-2/+3
| | |
* | | Log loadmodule dlopen() errors.Yossi Gottlieb2016-05-101-1/+4
| | |
* | | Modules: avoid conflict between modules func pointers and dynamic symbols.antirez2016-05-102-88/+95
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
| | |
* | | fixed makefile for linuxDvir Volk2016-05-101-2/+12
| | |
* | | Modules: first preview 31 March 2016.antirez2016-05-1013-4/+2625
|/ /
* | Merge branch 'unstable' of github.com:/antirez/redis into unstableantirez2016-05-081-0/+2
|\ \
| * \ Merge pull request #732 from evilpacket/remove_dofileSalvatore Sanfilippo2016-05-081-0/+2
| |\ \ | | | | | | | | Removes dofile() from Lua
| | * | Removed dofile() from LuaAdam Baldwin2012-10-251-0/+2
| | | |
* | | | redis-cli: integrate help.h with COMMAND output.antirez2016-05-071-10/+70
|/ / / | | | | | | | | | | | | | | | | | | Use the COMMAND output to fill with partial information the built-in help. This makes redis-cli able to at least complete commands that are exported by the Redis server it is connected to, but were not available in the help.h file when the redis-cli binary was compiled.
* | | Scripting test: match new error message.antirez2016-05-061-1/+1
| | |
* | | Cluster: don't check scripts key slots during AOF loading.antirez2016-05-051-2/+4
| | |
* | | redis-cli: remove debugging message.antirez2016-05-051-1/+0
| | |
* | | Merge branch 'unstable' of github.com:/antirez/redis into unstableantirez2016-05-051-1/+1
|\ \ \
| * \ \ Merge pull request #2956 from pkulchenko/global-protection-msg-typoSalvatore Sanfilippo2016-05-051-1/+1
| |\ \ \ | | | | | | | | | | Update global protection error message
| | * | | Update global protection error message to fix a typo.Paul Kulchenko2015-12-151-1/+1
| | | | |