summaryrefslogtreecommitdiff
path: root/src/scripting.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* Scripting: use mstime() and mstime_t for lua_time_start.antirez2014-02-031-2/+2
* Fixed grammar: before H the article is a, not an.antirez2013-12-051-2/+2
* Fixed critical memory leak from EVAL.antirez2013-08-291-4/+9
* Flush the replication script cache after SCRIPT FLUSH.antirez2013-06-251-0/+1
* Force propagation of SCRIPT LOAD to AOF.antirez2013-06-251-1/+1
* SCRIPT FLUSH comment minor pedantic improvement.antirez2013-06-251-1/+1
* Move Replication Script Cache initialization in safer place.antirez2013-06-241-4/+0
* Use the RSC to replicate EVALSHA unmodified.antirez2013-06-241-15/+25
* New API to force propagation.antirez2013-06-211-0/+1
* Allow writes from scripts called by AOF loading in read-only slaves.antirez2013-06-191-0/+1