Commit Graph

76 Commits

Author SHA1 Message Date
dcoppa
019e46614f Bugfix update to redis-2.4.11 2012-04-20 11:39:27 +00:00
dcoppa
60f2b549f6 Bugfix update to redis-2.4.10. 2012-04-02 12:14:31 +00:00
dcoppa
c9dc08fd47 bugfix update to redis-2.4.9 2012-03-19 09:27:36 +00:00
dcoppa
2ec893b722 Update to 2.4.8 2012-02-28 11:57:11 +00:00
dcoppa
618e5ba674 Bugfixing update to redis-2.4.7 2012-02-21 15:25:32 +00:00
dcoppa
e3dccc5f24 Bugfixing update to redis-2.4.6 2012-01-19 08:25:53 +00:00
kili
851b11be82 This needs a bump after the ghc patch. 2011-12-28 09:24:08 +00:00
dcoppa
6293ec89ee Bugfixing update to redis-2.4.5 2011-12-27 12:07:16 +00:00
dcoppa
85ae4cb798 Use -o ${SHAREOWN} -g ${SHAREGRP}. No pkg change. 2011-12-01 22:16:53 +00:00
dcoppa
13e8687552 - Update to redis-2.4.4
- Enable backtracing support using libexecinfo's backtrace()
- Add a rc script

rc_script diff from william@, who seems to have disappeared...
2011-11-29 16:07:23 +00:00
rpointel
b0e857f6d5 update redis to 2.4.2 with few tweaks by dcoppa@.
ok dcoppa@ (maintainer).
2011-11-06 11:43:00 +00:00
dcoppa
30aec679c1 I'm working on 2.4.1... In the meantime, update to redis-2.2.15
(bugfixing update).
2011-10-17 12:08:26 +00:00
dcoppa
d27346ad26 Maintainance update to redis-2.2.14 2011-09-23 08:14:23 +00:00
dcoppa
9c62c4e369 Update to redis-2.2.12.
Clean makefiles from colors, optimizations, and other amenities.

ok rpointel@
2011-07-28 08:57:32 +00:00
dcoppa
dca9bb9e38 Bugfixing update to redis-2.2.11.
Full ChangeLog at https://github.com/antirez/redis/raw/2.2/00-RELEASENOTES
2011-06-27 13:11:32 +00:00
dcoppa
f3264d1b88 Bugfixing update to Redis 2.2.8 2011-06-03 08:11:32 +00:00
dcoppa
de33ea3a09 Bugfixing update to 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).

* 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.
2011-05-11 11:47:48 +00:00
dcoppa
83c910b355 Bugfixing update to redis-2.2.5.
Fixed a crash occurring when loading an AOF containing the SPOP
command.
2011-04-29 07:43:05 +00:00
dcoppa
d638b6bf38 Update to redis-2.2.4
General consensus from interested people.
2011-04-11 07:54:49 +00:00
simon
52c7985789 update to version 2.2.2
with tweaks from dcoppa@ (maintainer)
2011-03-21 19:58:28 +00:00
dcoppa
db6e037f57 Bugfix update to redis-2.0.5 2011-03-16 14:19:38 +00:00
dcoppa
64e9c0793a New HOMEPAGE. 2010-12-30 11:17:10 +00:00
dcoppa
6c366f8fa6 Bugfix update to redis-2.0.4 2010-11-17 08:44:54 +00:00
dcoppa
5ce8239b6e Update to redis-2.0.3
From Remi Pointel, with tweaks by me.
2010-10-17 12:48:46 +00:00
dcoppa
6b8a442224 Fix a wrong cvs tag in Makefile. I'm sorry.
No bump as it was just imported...
2010-10-10 16:02:45 +00:00
dcoppa
2eb7d2b8a1 Import databases/redis.
Redis is an advanced key-value store. It is similar to memcached
but the dataset is not volatile, and values can be strings, exactly
like in memcached, but also lists, sets, and ordered sets. All this
data types can be manipulated with atomic operations to push/pop
elements, add/remove elements, perform server side union, intersection,
difference between sets, and so forth.
In order to be very fast but at the same time persistent the whole
dataset is taken in memory, and from time to time saved on disc
asynchronously (semi persistent mode) or alternatively every change
is written into an append only file (fully persistent mode).

OK sthen@, landry@
2010-10-10 15:50:06 +00:00