- 25 May, 2011 27 commits
-
-
antirez authored
-
antirez authored
Now it is possible to return multi bulks of multi bulks from Lua, just returning tables of tables. The new conversion of the Null bulk and multi bulk type is the Lua false type.
-
antirez authored
-
antirez authored
Lua max exec time fixes: redisLog() to log the event moved before the lua_error() call that does a long jump so never returns. Aesthetic fixes in error message.
-
antirez authored
call the Lua hook with minor frequency. It is already enough to call it every 100000 istructions for near millisecond precision.
-
antirez authored
-
antirez authored
-
antirez authored
-
antirez authored
-
antirez authored
Fixed a problem in the script engine that crashed the server if the reply was not stored just int the static buffer of the client structure.
-
antirez authored
-
antirez authored
-
antirez authored
Eval command table fixed to return the keys arguments of the command. We use zunionInterGetKeys() as it ZUNION/ZINTER have exactly the same semantic with a prefixed number of keys followed by key names.
-
antirez authored
-
antirez authored
Fixed nul bulk parsing in Redis protocol to Lua type convertion. Check for bad Lua types as arguements of the redis() Lua command.
-
antirez authored
-
antirez authored
-
antirez authored
Fixed arity detection of Redis command executed from Lua script. Error reporting from Lua fixed. More work on the Redis reply to lua conversion code.
-
antirez authored
full conversion from Lua return value to redis reply. Partial conversion from Redis reply to Lua type.
-
antirez authored
-
antirez authored
-
antirez authored
when creating not connected clients do not add them into the clients list, otherwise they will be subject to timeouts and other stuff
-
antirez authored
Correctly glue the reply buffer. For now returned as it is to Lua, but will be converted into Lua native type later.
-
antirez authored
Lua call of Redis command work in progress: sorry I have to go to the cinema to watch the Source Code movie
-
antirez authored
-
antirez authored
-
antirez authored
Fix for Pub/Sub system, introduced in Redis 2.2.6 with the new copy-on-write safe iterator semantics. In the hope this is the last bug I introduced this way.
-
- 24 May, 2011 2 commits
- 20 May, 2011 2 commits
- 19 May, 2011 1 commit
-
-
antirez authored
-
- 16 May, 2011 1 commit
-
-
antirez authored
-
- 15 May, 2011 3 commits
- 12 May, 2011 3 commits
- 11 May, 2011 1 commit
-
-
antirez authored
removed assert causing an illegal memory access. This was responsible of crashes during BLPOP and other list blocking operations.
-