summaryrefslogtreecommitdiff
path: root/src/scripting.c
Commit message (Expand)AuthorAgeFilesLines
...
* | | Scripting: fix redis.call() error reporting.antirez2015-11-091-5/+18
* | | Initialize all Lua scripting related things into scripting.cantirez2015-11-051-5/+31
* | | scripting.c source code better organized into sections.antirez2015-11-051-155/+181
|/ /
* | Scripting: ability to turn on Lua commands style replication globally.antirez2015-10-301-1/+1
* | Scripting: fix error reporting of many Redis provided functions.antirez2015-10-301-14/+14
* | Fix call() FORCE_REPL/AOF flags setting.antirez2015-10-301-13/+14
* | Lua script selective replication fixes.antirez2015-10-301-5/+5
* | Lua script selective replication WIP.antirez2015-10-301-2/+56
* | Scripting: single commands replication mode implemented.antirez2015-10-301-7/+67
* | Lazyfree: client output buffers no longer use Redis Objects.antirez2015-10-011-2/+2
* | RDMF: More consistent define names.antirez2015-07-271-29/+29
* | RDMF: REDIS_OK REDIS_ERR -> C_OK C_ERR.antirez2015-07-261-11/+11
* | RDMF: redisAssert -> serverAssert.antirez2015-07-261-3/+3
* | RDMF: OBJ_ macros for object related stuff.antirez2015-07-261-2/+2
* | RDMF: use client instead of redisClient, like Disque.antirez2015-07-261-7/+7
* | RDMF: redisLog -> serverLog.antirez2015-07-261-4/+4
* | RDMF (Redis/Disque merge friendlyness) refactoring WIP 1.antirez2015-07-261-1/+1
* | Merge branch 'sds' into unstableantirez2015-07-241-8/+4
|\ \
| * | sds size classes - memory optimizationOran Agra2015-07-141-8/+4
* | | config tcp-keepalive should be numerical field not boolJiahao Huang2015-07-161-1/+1
|/ /
* | hide access to debug tableBen Murphy2015-06-031-6/+9
* | Cluster: fix Lua scripts replication to slave nodes.antirez2015-03-221-2/+3
* | luaRedisGenericCommand(): log error at WARNING level when re-entered.antirez2015-01-201-2/+5
* | luaRedisGenericCommand() recursion: just return an error.antirez2015-01-201-1/+3
* | Panic on recursive calls to luaRedisGenericCommand().antirez2015-01-201-0/+14
* | Prevent Lua scripts from violating Redis Cluster keyspace access rules.antirez2015-01-091-1/+18
* | Lua: Add bitopMatt Stancliff2014-10-091-0/+2
* | Fix typo in scripting.c commentJuarez Bochi2014-09-291-1/+1
* | luaRedisGenericCommand() cached argv handling simplified.antirez2014-09-101-4/+2
* | Store the length of the static argv when first allocated.Paddy Byers2014-09-011-0/+1
* | Remove warnings and improve integer sign correctness.antirez2014-08-131-1/+1
* | scripting: no eval with negative key countMatt Stancliff2014-08-071-0/+3
* | Fix semantics of Lua calls to SELECT.antirez2014-06-121-1/+0
* | Scripting: Fix for a #1118 regression simplified.antirez2014-06-111-6/+1
* | Scripting: Fix regression from #1118Matt Stancliff2014-06-101-1/+6
* | Fixed dbuf variable scope in luaRedisGenericCommand().antirez2014-06-041-1/+1
* | Scripting: better Lua number -> string conversion in luaRedisGenericCommand().antirez2014-06-041-4/+14
* | Merge branch 'unstable' of github.com:/antirez/redis into unstableantirez2014-05-201-1/+3
|\ \
| * | Fix LUA_OBJCACHE segfault.michael-grunder2014-05-191-1/+3
* | | Remove trailing spaces from scripting.cantirez2014-05-201-3/+3
|/ /
* | Scripting: objects caching for Lua c->argv creation.antirez2014-05-071-3/+40
* | Scripting: Use faster API for Lua client c->argv creation.antirez2014-05-071-3/+6
* | Scripting: don't call lua_gc() after Lua script run.antirez2014-05-071-1/+17
* | Scripting: cache argv in luaRedisGenericCommand().antirez2014-05-071-4/+15
* | Fixed missing c->bufpos reset in luaRedisGenericCommand().antirez2014-05-071-0/+1
* | Scripting: replace tolower() with faster code in evalGenericCommand().antirez2014-05-071-1/+5
* | Scripting: luaRedisGenericCommand() fast path for buffer-only replies.antirez2014-05-071-7/+15
* | Scripting: simpler reply buffer creation in luaRedisGenericCommand().antirez2014-05-071-5/+2
* | Process events with processEventsWhileBlocked() when blocked.antirez2014-04-241-2/+1
* | Fix script cache bug in the scripting engine.antirez2014-02-131-0/+1