summaryrefslogtreecommitdiff
path: root/00-RELEASENOTES
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2010-12-15 16:44:29 +0100
committerantirez <antirez@gmail.com>2010-12-15 16:44:29 +0100
commit4c4dec7202091c1e7a2d1fe8f6013bf389426727 (patch)
tree9d0e65e9d8119b2e5672e6e8bd119b9b2393a8c3 /00-RELEASENOTES
parent401c3e213c89d98bbeda399b4e17fbd636b80ac0 (diff)
downloadredis-4c4dec7202091c1e7a2d1fe8f6013bf389426727.tar.gz
release notes added
Diffstat (limited to '00-RELEASENOTES')
-rw-r--r--00-RELEASENOTES33
1 files changed, 33 insertions, 0 deletions
diff --git a/00-RELEASENOTES b/00-RELEASENOTES
new file mode 100644
index 000000000..072cab479
--- /dev/null
+++ b/00-RELEASENOTES
@@ -0,0 +1,33 @@
+Welcome to Redis 2.1.9 (2.2 Release Candidate 1)
+
+This is the first Release Candidate of Redis 2.2, in our experience the
+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.
+
+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.
+* VM partial rewrite for code cleaness and memory usage.
+* Change to the implementation of the top level dictionary for better memory efficienty.
+* redis-cli is hugely improved: tab completion, inline help (Thanks to TJ Holowaychuk), raw output, rewritten using the new hiredis C library.
+* Networking internals rewritten for efficiency. You can expect LRANGE and similar commands to be at least 10 times faster.
+* Most read only commands are now copy-on-write friendly, this means that Redis will use little memory when a saving child is active and the parent process is mostly stressed by read queries.
+* Non blocking replication even from the point of view of the slave, with configurable behavior about what to do when the link is disconnected. You can select if serving old data or replying with an error.
+* 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.
+* Syslog support (Thanks to Jonah H. Harris)
+* Unix domain socket support.
+* New List related functions LINSERT, LPUSHX, RPUSHX (Thanks to Robey Pointer)
+* BRPOPLPUSH (Thanks to Michel Martens and Damian Janowski)
+* Much more interesting informations in the INFO output.
+* 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.
+* 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.