summaryrefslogtreecommitdiff
path: root/databases/redis1/pkg-descr
blob: 81dd3e5bdd3bafaaa814742467411129de547f48 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Redis is a key-value database.  It is similar to memcached but the
dataset is not volatile, and values can be strings, exactly like in
memcached, but also lists and sets with atomic operations to push/pop
elements.

In order to be very fast but at the same time persistent the whole
dataset is taken in memory and from time to time and/or when a number of
changes to the dataset are performed it is written asynchronously on
disk.  You may lost the last few queries that is acceptable in many
applications but it is as fast as an in memory DB (Redis supports
non-blocking master-slave replication in order to solve this problem by
redundancy).

WWW: http://code.google.com/p/redis/