- 25 May, 2011 21 commits
-
-
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.
-
- 10 May, 2011 4 commits
-
-
antirez authored
RDB version signature bumped to 2, now that direct saving of specially encoded types is implemented 2.2 instances are no longer able to read rdb files produced by 2.4 or unstable.
-
antirez authored
Introduced a safe iterator interface that can be used to iterate while accessing the dictionary at the same time. Now the default interface is consireded unsafe and should be used only with dictNext()
-
antirez authored
DEBUG DIGEST additional lookup needed for VM removed from unstable branch that does not have VM at all
-
antirez authored
-
- 07 May, 2011 1 commit
-
-
antirez authored
when Redis fails accepting a new connection reports the error at WARNING and not VERBOSE error level. Thanks to offby1 for proposing this in the Redis mailing list. #backport-candidate
-
- 06 May, 2011 1 commit
-
-
antirez authored
-