Name: | redis |
---|---|
Version: | 3.2.10 |
Release: | 2.el7 |
Architecture: | x86_64 |
Group: | Unspecified |
Size: | 1427536 |
License: | BSD |
RPM: | redis-3.2.10-2.el7.x86_64.rpm |
Source RPM: | redis-3.2.10-2.el7.src.rpm |
Build Date: | Wed Sep 06 2017 |
Build Host: | x86-ol7-builder-03.us.oracle.com |
Vendor: | Oracle America |
URL: | http://redis.io |
Summary: | 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. |
- Add redis-trib based on patch from Sebastian Saletnik. (RHBZ #1215654)
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
- Upstream 3.2.10 release - Ensure both the redis and redis-sentinel service files set correct perms - Dropped systemd tmpfiles source, handled directly in systemd service files
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
- Upstream 3.2.9 - Add RuntimeDirectory=redis to systemd unit file (RHBZ #1454700) - Mark rundir as %ghost since it may disappear (tmpfs - #1454700) - Fix a shutdown failure with Unix domain sockets (RHBZ #1444988)
- Upstream 3.2.8 - bugfix for #3796 (MIGRATE could cause server crash after socket error)
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
- Upstream 3.2.7 (important security fix)
- Install tmpfiles and /run/redis for legacy configurations
- Upstream 3.2.4 - Fix buffer overlow (TALOS-2016-0206)