Commit Graph

8 Commits

Author SHA1 Message Date
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
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
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
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