Date: Thu, 29 Aug 2013 17:56:43 +0000 (UTC) From: "Sergey A. Osokin" <osa@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r325618 - head/databases/redis Message-ID: <201308291756.r7THuhRS088171@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: osa Date: Thu Aug 29 17:56:43 2013 New Revision: 325618 URL: http://svnweb.freebsd.org/changeset/ports/325618 Log: Upgrade from 2.6.15 to 2.6.16. <ChangeLog> UPGRADE URGENCY: MODERATE. * [FIX] Stop writes when fork() fails when trying to BGSAVE. BGSAVE errors were trapped only in the case the saving child failed, so the fork() error was no trapped as no child is created at all. * [FIX] Fix a serious memory efficiency regression, Redis 2.6.16 is significantly better with large values (>= a few kbytes) and will be able to store two times the amount of data compared to Redis 2.6.15 when values are in that range. * [FIX] Fixed an issue with Table conversion in the lua-cmsgpack library exposed by the Redis scripting engine. * [NEW] DEBUG SDSLEN was introduced to debug memory inefficiencies due to SDS allocation more easily. </ChangeLog> Modified: head/databases/redis/Makefile head/databases/redis/distinfo Modified: head/databases/redis/Makefile ============================================================================== --- head/databases/redis/Makefile Thu Aug 29 17:48:05 2013 (r325617) +++ head/databases/redis/Makefile Thu Aug 29 17:56:43 2013 (r325618) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= redis -DISTVERSION= 2.6.15 +DISTVERSION= 2.6.16 CATEGORIES= databases MASTER_SITES= http://download.redis.io/releases/ Modified: head/databases/redis/distinfo ============================================================================== --- head/databases/redis/distinfo Thu Aug 29 17:48:05 2013 (r325617) +++ head/databases/redis/distinfo Thu Aug 29 17:56:43 2013 (r325618) @@ -1,2 +1,2 @@ -SHA256 (redis-2.6.15.tar.gz) = b0105c6ec526d40e90a0a0bc9d070a5602d839b930776b8ecaeb9fa32493e3bc -SIZE (redis-2.6.15.tar.gz) = 998865 +SHA256 (redis-2.6.16.tar.gz) = 81490918dcf82d124b36e48b0a9911bfba3f13abba04d8c89820324eff7df03a +SIZE (redis-2.6.16.tar.gz) = 999579
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201308291756.r7THuhRS088171>