Jump to letter: [
ABCDEFGHIJKLMNOPQRSTVWXYZ
]
redis - A persistent key-value database
- Description:
Redis is an advanced key-value store. It is often referred to as a data
structure server since keys can contain strings, hashes, lists, sets and
sorted sets.
You can run atomic operations on these types, like appending to a string;
incrementing the value in a hash; pushing to a list; computing set
intersection, union and difference; or getting the member with highest
ranking in a sorted set.
In order to achieve its outstanding performance, Redis works with an
in-memory dataset. Depending on your use case, you can persist it either
by dumping the dataset to disk every once in a while, or by appending
each command to a log.
Redis also supports trivial-to-setup master-slave replication, with very
fast non-blocking first synchronization, auto-reconnection on net split
and so forth.
Other features include Transactions, Pub/Sub, Lua scripting, Keys with a
limited time-to-live, and configuration settings to make Redis behave like
a cache.
You can use Redis from most programming languages also.
Packages
redis-3.2.8-1.el7.x86_64
[541 KiB] |
Changelog
by Haïkel Guémar (2017-02-20):
- Upstream 3.2.8
- bugfix for #3796 (MIGRATE could cause server crash after socket error)
|
redis-3.2.4-2.el7.x86_64
[538 KiB] |
Changelog
by Alan Pevec (2016-11-05):
- Install tmpfiles and /run/redis for legacy configurations
|
redis-3.2.4-1.el7.x86_64
[537 KiB] |
Changelog
by Haïkel Guémar (2016-09-26):
- Upstream 3.2.4
- Fix buffer overlow (TALOS-2016-0206)
|
redis-3.2.3-1.el7.x86_64
[525 KiB] |
Changelog
by Haïkel Guémar (2016-08-04):
- Upstream 3.2.3
- Security fix for CVE-2013-7458 (redis-cli history world readable)
- RHBZ#1363670 RHBZ#1363671
|
redis-3.0.6-1.el7.x86_64
[460 KiB] |
Changelog
by Haïkel Guémar (2015-12-19):
- Upstream 3.0.6 (RHBZ#1272281)
|
redis-2.8.21-1.el7.x86_64
[422 KiB] |
Changelog
by Haïkel Guémar (2015-06-04):
- Upstream 2.8.21
- Fix Lua sandbox escape and arbitrary code execution (RHBZ #1228331)
|
redis-2.8.19-2.el7.x86_64
[418 KiB] |
Changelog
by Haïkel Guémar (2015-03-26):
- Fix redis-shutdown on multiple NIC setup (RHBZ #1201237)
|