summaryrefslogtreecommitdiff
path: root/databases/redis/files (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Upgrade from 2.6.16 to 2.8.0.Sergey A. Osokin2013-11-285-74/+83
| | | | Changelist: https://raw.github.com/antirez/redis/2.8/00-RELEASENOTES
* Upgrade from 2.6.14 to 2.6.15.Sergey A. Osokin2013-08-212-0/+47
| | | | | | | | | | | | | | | | | | | | | | Add support for lang/lua, disabled by default. <ChangeLog> UPGRADE URGENCY: MODERATE, upgrade ASAP only if you experience issues related to the expired keys collection algorithm, or if you use the ZUNIONSTORE command. * [FIX] Improved expired keys collection algorithm. Even under heavy load keys to be expired can't accumulate because of lack of CPU time. * [FIX] Fixed Issue #1240, ZUNIONSTORE could lead to wrong result. * [NEW] redis-benchmark improvements. * [NEW] dict.c API wrong usage detection. WARNING: redis-benchmark released with 2.6.15 features non backward compatible change in the way the random arguments are specified, use the --help option for more information. </ChangeLog>
* Update from 2.6.10 to 2.6.11.Sergey A. Osokin2013-03-121-4/+4
| | | | | | | | | | | | | | | | <ChangeLog> UPGRADE URGENCY: LOW, however updating is encouraged if you have many instances per server and you want to lower the CPU / energy usage. * [BUGFIX] Replication: more strict error checking for master PING reply. * [BUGFIX] redis-cli: use keepalive socket option for improved reliability. * [BUGFIX] Allow AUTH while loading the DB in memory. * [BUGFIX] Don't segfault on unbalanced quotes while parsing config file. * [IMPROVED] serverCron() frequency is now a runtime parameter (was REDIS_HZ). * [IMPROVED] Use a lot less CPU when idle, even with many configured DBs. </ChangeLog>
* Update from 2.6.9 to 2.6.10.Sergey A. Osokin2013-02-111-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | <ChangeLog> UPGRADE URGENCY: MODERATE, this release contains many non-critical fixes and many small improvements. * [BUGFIX] redis-cli --rdb, fixed when the server sends newlines to ping. * [BUGFIX] redis-cli, minor fixes on connection handling, prompt. * [BUGFIX] Slow log: don't log EXEC, just executed commands. * [BUGFIX] On failed shutdown don't try again and again compulsively. * [BUGFIX] Fix build on sunos without backtrace(). * [BUGFIX] UNSUBSCRIBE and PUNSUBSCRIBE: always provide a reply (see 742e580) * [BUGFIX] Lua struct library was broken, upgraded. * [BUGFIX] Fix a bug in srandmemberWithCountCommand() with count argument. * [BUGFIX] Test: disable clients timeout to prevent issues on slow systems. * [BUGFIX] Sentinel: don't advertise the promoted slave as master too early. * [IMPROVED] Whitelist SIGUSR1, see http://redis.io/topics/signals. * [IMPROVED] Simpler to understand redis-cli --bigkeys output. * [IMPROVED] Test now works with tclsh > 8.5. * [IMPROVED] Added option to turn of the Nagle algorithm in slave socket. * [IMPROVED] Optionally use SO_KEEPALIVE to detect dead peers. </ChangeLog>
* Update from 2.6.7 to 2.6.8.Sergey A. Osokin2013-01-121-0/+47
| | | | | | | | | | | | | | | | | Add experimental support for lang/luajit, disabled by default. <ChangeLog> UPGRADE URGENCY: MODERATE if you use Lua scripting. Otherwise LOW. * [BUGFIX] Multiple fixes for EVAL (issue #872). * [BUGFIX] Fix overflow in mstime() in redis-cli and benchmark. * [BUGFIX] Fix Linux / PPC64 behavior by correcting endianess detection. * [BUGFIX] Fix NetBSD build by defining _XOPEN_SOURCE appropriately. * [BUGFIX] Added missing license and copyright in a few places. * [BUGFIX] Better error reporting when fd event creation fails. </ChangeLog>
* Use more canonical names for patches.Sergey A. Osokin2012-11-225-0/+0
| | | | | | | No functionaly changes. Don't bump PORTREVISION. Feature safe: yes
* Revert back changes for rc script.Sergey A. Osokin2012-10-291-1/+1
| | | | | | | | Bump PORTREVISION. Notice from: crees Feature safe: yes
* Update from 2.4.17 to latest stable version 2.6.2.Sergey A. Osokin2012-10-286-50/+34
| | | | Feature safe: yes
* Update from 2.4.15 to 2.4.16.Sergey A. Osokin2012-08-022-3/+3
| | | | | | Submitted by: Kubilay Kocak aka koobs dot freebsd at gmail dot com Tests: https://redports.org/buildarchive/20120802120704-7005/ PR: 170326
* Rename rc script template to more canonical name.Sergey A. Osokin2012-07-181-0/+0
|
* Update from 2.4.13 to 2.4.14.Sergey A. Osokin2012-05-281-4/+4
| | | | | | | | | | | | | | | | | | <ChangeLog> 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. </ChangeLog>
* Update from 2.4.7 to 2.4.8.Sergey A. Osokin2012-02-244-38/+39
| | | | | | | | | | | | | | | | <ChangeLog> UPGRADE URGENCY: moderate if you don't experience any of the fixed problems. * [BUGFIX] Make install now uses cp -f to avoid 'text file busy' errors. * [BUGFIX] redis-check-aof is now large files safe also on 32 bit systems. * [BUGFIX] Issue #327 fixed: maxmemory and replication now work much better. * [BUGFIX] Now HINCRBY can detect overflows too. Fix for issue #330. * [BUGFIX] Fixed compilation with latest clang. * [BUGFIX] Fixed handling of empty sorted sets produced in RDB by very old Redis versions (1.2.x). </ChangeLog>
* In the rc.d scripts, change assignments to rcvar to use theDoug Barton2012-01-141-1/+1
| | | | | | | | | | | literal name_enable wherever possible, and ${name}_enable when it's not, to prepare for the demise of set_rcvar(). In cases where I had to hand-edit unusual instances also modify formatting slightly to be more uniform (and in some cases, correct). This includes adding some $FreeBSD$ tags, and most importantly moving rcvar= to right after name= so it's clear that one is derived from the other.
* Fix build on i386.Sergey A. Osokin2011-12-021-3/+7
| | | | | | Feature safe: yes PR: 163004
* Use backtrace()/backtrace_symbols() calls from devel/libexecinfo forSergey A. Osokin2011-11-303-32/+22
| | | | | | | | better diagnostics. Bump PORTREVISION. Feature safe: yes
* Update from 2.4.3 to 2.4.4.Sergey A. Osokin2011-11-301-0/+32
| | | | | | | | | | | | | | Add quickfix for build. [*] Feature safe: yes Submitted by: Alex Lyashkov <umka at sevcity dot net> [*] <ChangeLog> https://raw.github.com/antirez/redis/2.4/00-RELEASENOTES </ChangeLog>
* Add quick fix for fresh redis.Sergey A. Osokin2011-11-231-12/+12
| | | | | | | Also drop a note for UPDATING. Feature safe: yes Pointy hat to: osa
* Update from 2.2.15 to 2.4.3.Sergey A. Osokin2011-11-231-0/+11
| | | | | | | | | | | | | | Add fix for build with clang. [*] Submitted by: vanilla [*] Feature safe: yes <ChangeLog> https://raw.github.com/antirez/redis/2.4/00-RELEASENOTES </ChangeLog>
* Update from 2.2.12 to latest bugfix release 2.2.13.Sergey A. Osokin2011-09-141-6/+6
| | | | | | | | | | | <ChangeLog> * [BUGFIX] Fixed issue 593 (BRPOPLPUSH related crash). * [BUGFIX] Fixed an issue with the networking layer that may prevent Redis from sending the whole reply back to client under extreme conditions. </ChangeLog>
* Remove painful examples of foo="", with particular prejudice againstDoug Barton2011-05-151-1/+0
| | | | | | | | | | | | | | | constructions that parse out to [ -z "$foo" ] && foo="" These are bad examples that get copied and pasted into new code, so the hope is that with less bad examples there will be less need for me to bring this up in review. In a few of these files all that were changed were comments so that next time I search for these patterns I won't trip on the file for no reason. In a few places, add $FreeBSD$ No functional changes, so no PORTREVISION bumps
* Update from 2.2.5 to 2.2.7.Sergey A. Osokin2011-05-111-85/+0
| | | | | | | | | | | | | | | | | | | | | | | | Also update port infrastructure, remove needless script. <ChangeLog> What's new in Redis 2.2.7 ========================= * Fixed bug #543-2 (the issue was reopened with a completely different report) that caused Redis to randomly crash on list push performed against lists with other clients blocked with BLPOP (or variants). What's new in Redis 2.2.6 ========================= * Fixed bug #543. If you saw Redis instances crashing on List operations (only happening with a non-default max entry size ziplist setting in redis.conf) it was almost certainly this problem. * Fixed a bug with replication where SLAVEOF NO ONE caused a slave to close the connection with all its slaves. </ChangeLog>
* Update from 2.0.4 (after repocopy to databases/redis2) to latestSergey A. Osokin2011-02-134-0/+79
| | | | | | | release candidate 2.2.rc4. Add CONFLICTS with redis-2.0. Add NO_LATEST_LINK, should be removed after 2.2 release.
* Update to latest stable version 2.0.1.Sergey A. Osokin2010-09-201-11/+11
| | | | Previous stable release redis-1.2.6 repocopied to databases/redis1.
* Begin the process of deprecating sysutils/rc_subr byDoug Barton2010-03-271-1/+1
| | | | s#. %%RC_SUBR%%#. /etc/rc.subr#
* Update from 1.02 to 1.2.0.Sergey A. Osokin2010-01-171-12/+12
| | | | | | | | | | | | | Adopt patch for redis.conf. Previously and by default redis was compiled with debugging information, that didn't respect CFLAGS. So, now its possible to compile with debugging information by use WITH_DEBUG knob. Take maintainership. Approved by: maintainer (skv@)
* Add redis 0.900, a persistent key-value database with built-in netSergey Skvortsov2009-07-274-0/+162
interface.