Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | | 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: REDISMODULE_POSTPONED_ARRAY_LEN doc. | antirez | 2016-05-10 | 1 | -0/+45 | |
| | | | ||||||
* | | | Modules: Hash API defines made more uniform. | antirez | 2016-05-10 | 3 | -42/+38 | |
| | | | ||||||
* | | | Modules: Hash type API WIP #2. | antirez | 2016-05-10 | 3 | -4/+60 | |
| | | | ||||||
* | | | Modules: Hash type API WIP #1. | antirez | 2016-05-10 | 4 | -6/+212 | |
| | | | ||||||
* | | | Modules: a few fixes for the zset iterator. | antirez | 2016-05-10 | 2 | -6/+13 | |
| | | | ||||||
* | | | Modules: postponed array lengths. | antirez | 2016-05-10 | 2 | -3/+86 | |
| | | | ||||||
* | | | Modules: zset lex iterator #3. | antirez | 2016-05-10 | 3 | -3/+49 | |
| | | | ||||||
* | | | Modules: zset lex iterator #2. | antirez | 2016-05-10 | 3 | -6/+30 | |
| | | | ||||||
* | | | Modules: zset lex iterator #1. | antirez | 2016-05-10 | 3 | -4/+77 | |
| | | | ||||||
* | | | Modules: zset iterator redesign #1. | antirez | 2016-05-10 | 4 | -106/+76 | |
| | | | ||||||
* | | | Simple Ruby script to generate reference doc added. | antirez | 2016-05-10 | 1 | -0/+38 | |
| | | | ||||||
* | | | 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 | 4 | -24/+134 | |
| | | | ||||||
* | | | 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 | 3 | -4/+34 | |
| | | | ||||||
* | | | Modules: sorted set iterators WIP. | antirez | 2016-05-10 | 4 | -1/+221 | |
| | | | ||||||
* | | | Remove useless space. | antirez | 2016-05-10 | 1 | -1/+1 | |
| | | | ||||||
* | | | Modules: ZSET API WIP #4. | antirez | 2016-05-10 | 2 | -1/+33 | |
| | | | ||||||
* | | | Modules: ZSET API WIP #3. | antirez | 2016-05-10 | 2 | -0/+24 | |
| | | | ||||||
* | | | Modules: ZSET API WIP #2. | antirez | 2016-05-10 | 2 | -1/+93 | |
| | | | ||||||
* | | | Modules: ZSET API WIP. | antirez | 2016-05-10 | 2 | -5/+14 | |
| | | | ||||||
* | | | Modules: expire API and documentation. | antirez | 2016-05-10 | 4 | -0/+101 | |
| | | | ||||||
* | | | Modules: RedisModule_ReplyWithCallReply(). | antirez | 2016-05-10 | 4 | -1/+31 | |
| | | | ||||||
* | | | Stops SPLICE from accepting negative counts | Itamar Haber | 2016-05-10 | 1 | -2/+6 | |
| | | | ||||||
* | | | 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 | 2 | -0/+9 | |
| | | | ||||||
* | | | fixed the doc with a right function name | Dvir Volk | 2016-05-10 | 1 | -2/+3 | |
| | | | ||||||
* | | | 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 | 2 | -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. | antirez | 2016-05-10 | 1 | -6/+7 | |
| | | | ||||||
* | | | fixed makefile for linux | Dvir Volk | 2016-05-10 | 1 | -2/+12 | |
| | | | ||||||
* | | | Modules: first preview 31 March 2016. | antirez | 2016-05-10 | 13 | -4/+2625 | |
|/ / | ||||||
* | | Merge branch 'unstable' of github.com:/antirez/redis into unstable | antirez | 2016-05-08 | 1 | -0/+2 | |
|\ \ | ||||||
| * \ | Merge pull request #732 from evilpacket/remove_dofile | Salvatore Sanfilippo | 2016-05-08 | 1 | -0/+2 | |
| |\ \ | | | | | | | | | Removes dofile() from Lua | |||||
| | * | | Removed dofile() from Lua | Adam Baldwin | 2012-10-25 | 1 | -0/+2 | |
| | | | | ||||||
* | | | | redis-cli: integrate help.h with COMMAND output. | antirez | 2016-05-07 | 1 | -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. | antirez | 2016-05-06 | 1 | -1/+1 | |
| | | | ||||||
* | | | Cluster: don't check scripts key slots during AOF loading. | antirez | 2016-05-05 | 1 | -2/+4 | |
| | | | ||||||
* | | | redis-cli: remove debugging message. | antirez | 2016-05-05 | 1 | -1/+0 | |
| | | | ||||||
* | | | Merge branch 'unstable' of github.com:/antirez/redis into unstable | antirez | 2016-05-05 | 1 | -1/+1 | |
|\ \ \ | ||||||
| * \ \ | Merge pull request #2956 from pkulchenko/global-protection-msg-typo | Salvatore Sanfilippo | 2016-05-05 | 1 | -1/+1 | |
| |\ \ \ | | | | | | | | | | | Update global protection error message | |||||
| | * | | | Update global protection error message to fix a typo. | Paul Kulchenko | 2015-12-15 | 1 | -1/+1 | |
| | | | | |