Changelog History
Page 6
-
v2.2.0 Changes
โ Added method
Redis#without_reconnect
that ensures the client will not try to reconnect when running the code inside the specified block.0๏ธโฃ Thread-safe by default. Thread safety can be explicitly disabled by passing
:thread_safe => false
as argument.๐ฉ Commands called inside a MULTI/EXEC no longer raise error replies, since a successful EXEC means the commands inside the block were executed.
MULTI/EXEC blocks are pipelined.
Don't disconnect on error replies.
๐ Use
IO#syswrite
instead ofIO#write
because write buffering is not necessary.Connect to a unix socket by passing the
:path
option as argument.โฑ The timeout value is coerced into a float, allowing sub-second timeouts.
Accept both
:with_scores
and:withscores
as argument to sorted set commands.๐ Use hiredis (v0.3 or higher) by requiring "redis/connection/hiredis".
๐ Use em-synchrony by requiring "redis/connection/synchrony".
-
v2.1.1 Changes
๐ See commit log.