| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
| |
Feature safe: yes
Notes:
svn path=/head/; revision=307201
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Feature safe: yes
<ChangeLog>
* [BUGFIX] Fixed 32 bit build on Linux systems.
* [BUGFIX] MONITOR and CLIENT LIST: propertly display unix socket clients.
* [IMPROVED] redis-cli inline help updated.
* [IMPROVED] Marginally more robust AOF child handling.
* [IMPROVED] Fixed a few typos in comments.
</ChangeLog>
Notes:
svn path=/head/; revision=307130
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Feature safe: yes
<ChangeLog>
[ Redis 2.6.2 ]
* [BUGFIX] The compilation fix for RHLE5 in 2.6.1 was broken. Fixed.
* [IMPROVED] Linenoise updated, now supports Ctrl+w.
[ Redis 2.6.1 ]
* [BUGFIX] Compilation on Linux < 2.6.17 or glibc < 2.6 fixed (RHLE5 & co).
</ChangeLog>
Notes:
svn path=/head/; revision=306474
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Feature safe: yes
<ChangeLog>
* [BUGFIX] Allow AUTH when server is in -BUSY state because of a slow script.
* [BUGFIX] MULTI/EXEC flow now makes sense when observed in MONITOR
* [BUGFIX] SCRIPT KILL now uses different error prefixes for different errors.
* [BUGFIX] Default memory limit for 32bit archs lowered from 3.5 to 3 GB.
* [BUGFIX] redis-check-dump is now compatible with RDB files generated by 2.6.
* [IMPROVED] New field in INFO: slave_read_only.
</ChangeLog>
Notes:
svn path=/head/; revision=306350
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Add TEST option for running unit tests.
Add test and regression-test targets.
Remove needless patch.
New Makefile header convention.
PR: 172396
<ChangeLog>
* [BUGFIX] Fixed compilation on FreeBSD.
* [IMPROVED] SRANDMEMBER <count> that returns multiple random elements.
* [IMPROVED] Sentinel backported to 2.6. It will be taken in sync with 2.8.
* [IMPROVED] Helper function for scripting to return errors and status replies.
* [IMPROVED] SORT by nosort [ASC|DESC] uses sorted set elements ordering.
* [BUGFIX] Better resistence to system clock skew.
* [IMPROVED] Warn the user when the configured maxmemory seems odd.
* [BUGFIX] Hashing function is now murmurhash2 for security purposes.
* [IMPROVED] Install script no longer uses a template but redis.conf itself.
</ChangeLog>
Notes:
svn path=/head/; revision=305364
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
<ChangeLog>
UPGRADE URGENCY: HIGH
* [BUGFIX] Theoretical bug in ziplist fixed.
* [BUGFIX] Better out of memory handling (Log produced in log file).
* [BUGFIX] Incrementally flush RDB file on slave side while performing the
first synchronization with the master. This makes Redis less
blocking in environments where disk I/O is slow.
* [BUGFIX] Don't crash with Lua's redis.call() without arguments.
* [BUGFIX] Don't crash after a big number of Lua calls on 32 bit systems
because of a failed assertion.
* [BUGFIX] Fix SORT behaviour when called from scripting.
* [BUGFIX] Adjust slave PING period accordingly to REDIS_HZ define.
* [BUGFIX] BITCOUNT: fix crash on overflowing arguments.
* [BUGFIX] Return an error when SELECT argument is not an integer.
* [BUGFIX] Blocking operations on lists were completely reimplemented for
correctness. Now blocking list ops and pushes originated from
Lua scripts will play well together and will be replicated
and transmitted to the AOF correctly.
* [IMPROVED] Send async PING before starting replication to avoid blocking if
master allows us to connect but it is actually not able to reply.
* [IMPROVED] Support slave-priority for Redis Sentinel.
* [IMPROVED] Hiredis library updated.
</ChangeLog>
Notes:
svn path=/head/; revision=304537
|
|
|
|
| |
Notes:
svn path=/head/; revision=301937
|
|
|
|
| |
Notes:
svn path=/head/; revision=301936
|
|
|
|
| |
Notes:
svn path=/head/; revision=301868
|
|
|
|
|
|
|
| |
Update CONFLICTS for databases/redis and databases/redis-devel.
Notes:
svn path=/head/; revision=301170
|
|
|
|
| |
Notes:
svn path=/head/; revision=301023
|
|
|
|
|
|
|
| |
Update to the latest development version 2.6.0-rc5.
Notes:
svn path=/head/; revision=301021
|
|
|
|
| |
Notes:
svn path=/head/; revision=261504
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
<ChangeLog>
- Fixed a not critical but important VM bug: from time to time a race
condition may happen and a client may never get the reply from a given
request.
- Now we have a make install target as stated in the README.
- redis-cli no longer tries to understand if it's part of a pipe
so there is to use the -x option to read the last arg from stdin.
This prevents it from creating problem when running inside cron scripts.
- Fixed the init script provided in the tar.gz. It was totally broken.
- Fixed a bug related to connecting more than 10k clients to Redis.
</ChangeLog>
Notes:
svn path=/head/; revision=260919
|
|
|
|
|
|
|
| |
ChangeLog: http://code.google.com/p/redis/wiki/Redis_2_0_0_Changelog
Notes:
svn path=/head/; revision=260496
|
|
|
|
|
|
|
|
| |
Add CONFLICTS.
Add the note in UPDATING about configuration file changes.
Notes:
svn path=/head/; revision=259281
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
<ChangeLog>
Redis 1.2.6 fixes two critical replication bugs, and a few
improvements.
- Fixed Issue 207 (http://code.google.com/p/redis/issues/detail?id=207)
(broken replication with binary arguments not in the last position
with the MSET command or any other command issued with new
multi-bulk protocol).
- Fixed Issue 174 (http://code.google.com/p/redis/issues/detail?id=174)
(temp names collisions producing broken slave-side .rdb files).
- Redis-cli backported from Redis master, with interactive mode, line
editing via the linenoise library, auth ability, and much more.
- ZRANGEBYSCORE now supports WITHSCORES as well (backported from
master).
- A simplified version of redis-stat (from redis tools) added.
</ChangeLog>
Notes:
svn path=/head/; revision=251942
|
|
|
|
|
|
|
| |
s#. %%RC_SUBR%%#. /etc/rc.subr#
Notes:
svn path=/head/; revision=251553
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Notice from: roberto
<ChangeLog>
Redis 1.2.5 fixes a replication bug: multiple slaves
connecting to the same master could lead to random
crashes or corruptions.
</ChangeLog>
Notes:
svn path=/head/; revision=251075
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Notice from: roberto
<ChangeLog>
- Replication when .rdb file is bigger than 2GB.
</ChangeLog>
Notes:
svn path=/head/; revision=250656
|
|
|
|
|
|
|
|
|
| |
Feature safe: yes
Submitted by: roberto
Notes:
svn path=/head/; revision=250522
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Feature safe: yes
<ChangeLog>
redis-1.2.2 is a bugfix release, fixing a problem with BGSAVE and BGREWRITEAOF
copy-on-write semantics. This version of Redis will use a lot less CPU and
memory while performing a BGSAVE and BGREWRITEAOF operation.
It is very important to upgrade ASAP to this version if you are using Redis
with data persistence via snapshotting or append only file.
Another minor change is that the INFO command will now have a new field showing
memory usage in an human readable form. This was backported from Redis unstable
as well.
</ChangeLog>
Notes:
svn path=/head/; revision=250173
|
|
|
|
| |
Notes:
svn path=/head/; revision=248422
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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@)
Notes:
svn path=/head/; revision=248012
|
|
|
|
|
|
|
| |
Approved by: maintainer (skv@)
Notes:
svn path=/head/; revision=245015
|
|
|
|
|
|
|
|
|
| |
Feature safe: yes
Approved by: maintainer (skv)
Notes:
svn path=/head/; revision=242235
|
|
|
|
|
|
|
|
| |
Submitted by: osa
Feature safe: yes
Notes:
svn path=/head/; revision=241834
|
|
interface.
Notes:
svn path=/head/; revision=238445
|