From 0155386608d2a399a3c7caa2acc82342aaa7bb2e Mon Sep 17 00:00:00 2001 From: antirez Date: Wed, 23 May 2012 11:32:58 +0200 Subject: [PATCH] Redis 2.4.14 --- 00-RELEASENOTES | 15 +++++++++++++++ src/version.h | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/00-RELEASENOTES b/00-RELEASENOTES index 98e969772..6e16391e4 100644 --- a/00-RELEASENOTES +++ b/00-RELEASENOTES @@ -21,6 +21,21 @@ CHANGELOG What's new in Redis 2.4.13 ========================= +UPGRADE URGENCY: high, many non trivial bugs fixed in this release. + +* [BUGFIX] Fixed issue #518 (Redis 99% CPU when master down). +* [BUGFIX] Fixed issue #516 (ZINTERSTORE mixing sets and zsets). +* [BUGFIX] Fixed a bug in install_server.sh when using chkconfig +* [BUGFIX] Fixes to --test-memory implementation. +* [BUGFIX] Allow PREFIX to be overridden in Makefile. +* [BUGFIX] The test is now more reliable on slow computers. +* redis-cli --pipe mode, see http://redis.io/topics/mass-insert +* Much better expired keys collection algorithm that makes the server much + more responsive when a lot of keys are expiring at the same time. + +What's new in Redis 2.4.13 +========================= + UPGRADE URGENCY: high for all the users of the KEYS command, otherwise low. * [BUGFIX] Fix for KEYS command: if the DB contains keys with expires the KEYS diff --git a/src/version.h b/src/version.h index b195fb828..05d5da3ed 100644 --- a/src/version.h +++ b/src/version.h @@ -1 +1 @@ -#define REDIS_VERSION "2.4.13" +#define REDIS_VERSION "2.4.14" -- GitLab