summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
...
* | 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-1012-4/+2617
|/
* 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.
* | 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
| | | |
* | | | Revert "Fix commandCommand arity"antirez2016-05-051-1/+1
|/ / / | | | | | | | | | | | | | | | This reverts commit 1189a4eae6d009fc0da8d50fd542ba1391542165. Actually this is wrong, the command can be called without args at all.
* | | Fix commandCommand arityRuben Bridgewater2016-05-051-1/+1
| | |
* | | Merge pull request #2998 from danielhtshih/unstableSalvatore Sanfilippo2016-05-051-0/+2
|\ \ \ | | | | | | | | Fix a possible race condition of sdown event detection if sentinel's connection to master/slave/sentinel became disconnected just after the last PONG and before the next PING.
| * | | Fix a possible race condition of sdown detection if theDaniel Shih2016-01-121-0/+2
| | | | | | | | | | | | | | | | connection to master/slave/sentinel decames disconnected just after the last PONG and before the next PING.
* | | | Merge pull request #3006 from baishaofei/unstableSalvatore Sanfilippo2016-05-052-9/+9
|\ \ \ \ | | | | | | | | | | fix linux compile Error zmalloc.c:109: error: invalid lvalue in unary `&'
| * | | | fix linux compile bugroot2016-01-132-9/+9
| | | | |