]> git.saurik.com Git - redis.git/blobdiff - 00-RELEASENOTES
release notes, info on 2.0 compatibility
[redis.git] / 00-RELEASENOTES
index 072cab4791e98dd3bf3a852e24985e6a0d55f7b0..04b40b9a2e367d2449e98c97363515ab1a05b21b 100644 (file)
@@ -5,6 +5,8 @@ server is very stable, but in the latest weeks we rewrote part of the internals
 in order to use a lot less memory while the saving child process is performing
 a BGREWRITEAOF or a BGSAVE, so handle with care for a couple of weeks.
 
+Oh, and I've some very good news: the majority of apps can work if you simply replace 2.2 in your old 2.0 environment. I can't think of any breakage.
+
 WHAT'S NEW IN REDIS 2.2.x
 
 * Specially encoded data types, small lists and sets can now use up to an order of magnitude less memory.
@@ -17,6 +19,7 @@ WHAT'S NEW IN REDIS 2.2.x
 * Check-and-set (CAS) transactions with the new WATCH command.
 * Now write operations work against keys with an EXPIRE set! Imagine the possibilities.
 * New maxmemory eviction policies. It is possible to select among LRU, farest TTL expire, and other algorithms, and if when the memory limit is reached only keys with an expire set or all the keys should be expired.
+* SETBIT / GETBIT / SETRANGE / GETRANGE / STRLEN. Now your strings are your arrays!
 * Syslog support (Thanks to Jonah H. Harris)
 * Unix domain socket support.
 * New List related functions LINSERT, LPUSHX, RPUSHX (Thanks to Robey Pointer)
@@ -25,9 +28,8 @@ WHAT'S NEW IN REDIS 2.2.x
 * Sorted sets are now less memory hungry.
 * Non blocking loading of .rdb / AOF file on startup, with process information in the INFO output.
 * Now Redis has a clean, powerful, supported C library: hiredis.
-* Code layout completely new, the 2.0.x huge redis.c file is not splitted in many parts.
-* Better MONITOR output.
+* Code layout completely new, the 2.0.x huge redis.c file is now splitted in many parts.
 * Redis-benchmark rewritten to be faster and in order to use hiredis as well.
 * Endless other CPU optimizations and bugs fixed.
 
-Credis: Where not specified the implementation and design are done by Salvatore Sanfilippo and Pieter Noordhuis. Thanks to VMware for making all this possible. Also many thanks to all the other contributors and the amazing community we have.
+Credits: Where not specified the implementation and design are done by Salvatore Sanfilippo and Pieter Noordhuis. Thanks to VMware for making all this possible. Also many thanks to all the other contributors and the amazing community we have.