< Home - < Back

redis


Information about the package, redis, which is shipped with common Linux distributions. The redis package is designed for, A persistent key-value database.


Package Name:

redis

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.

Architecture:

x86_64

Version:

3.2.11

Release:

1.el6

Size:

521 k

Repository:

epel

From Repository:

Licence:

BSD



Handy Yum Commands for redis


Control the redis package with the following handy commands outlined below.


Command

Description of Command

yum install redis

This command will install redis on the server.

yum remove redis

This command will un-install redis on the server. When you run this command, you will be asked if you are sure that you want to remove redis, so you have to manually confirm that you want to do this.

yum -y remove redis

This command will un-install redis on the server. When you run this command with th e -y flag, you will not be prompted to check that you are sure you want to remove the package - so be sure you absolutely want to remove redis when using the -y flag.

yum update redis

This command will update redis to the latest version. When you run this command, you will be asked if you are sure that you want to remove redis, so you have to manually confirm that you want to do this.

yum -y update redis

This command will update redis to the latest version. When you run this command with the -y flag, you will not be prompted to check that you are sure you want to remove the package - so be sure you absolutely want to remove redis when using the -y flag.

yum info redis

This command will show you core information about the redis package.

yum deplist redis

This command will show you the dependencies for redis. Thankfully, when using Yum, if dependencies are required, these are also installed at the same time so you don't have to worry too much about that.

yum check-update redis

This command will check if there is an update waiting on redis. When you run this command this will return nothing if there is nothing to update, or, will return the package name if the package is due to be updated.