Package redis: Information

  • Default inline alert: Version in the repository: 7.2.4-alt1.1

Source package: redis
Version: 5.0.4-alt1
Latest version according to Repology
Build time:  May 10, 2019, 11:38 AM in the task #229175
Category: System/Libraries
Report package bug
Home page: http://redis.io/

License: New BSD License
Summary: Redis is an advanced key-value store
Description: 
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. Redis supports different kind of sorting abilities.

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). Redis is able to rebuild the
append only file in background when it gets too big.

Redis supports trivial to setup master-slave replication, with very
fast non-blocking first synchronization, auto reconnection on net split,
and so forth.

Redis is written in ANSI C and works in most POSIX systems like Linux,
*BSD, Mac OS X, Solaris, and so on. Redis is free software released under
the very liberal BSD license. Redis is reported to compile and work
under WIN32 if compiled with Cygwin, but there is no official support
for Windows currently.

List of rpms provided by this srpm:
redis (x86_64, i586, aarch64)
redis-debuginfo (x86_64, i586, aarch64)

Maintainer: Vitaly Lipatov



    1. git-core
    2. tcl >= 8.5
    3. xsltproc

Last changed


May 10, 2019 Nikolay A. Fetisov 5.0.4-alt1
- New version
- Use libc malloc for e2k arch (Closes: 35473)
Aug. 5, 2018 Nikolay A. Fetisov 4.0.11-alt1
- New version
June 16, 2018 Nikolay A. Fetisov 4.0.10-alt1
- New version
  * Fix security issues related to the Lua scripting engine
  * Fix a bug with SCAN/SSCAN/HSCAN/ZSCAN, that may not return all the elements
  * Fix a PSYNC2 bug that can affect partial resynchronization