Blame SOURCES/README

805319
Package %{scl_name} provides the Redis data store as a Software
805319
Collection.  For more information about Software Collections, see
805319
scl(1).  By installing the %{scl_name} collection, you will get
805319
the set of packages to have a working Redis server.
805319
805319
Usage: scl enable %{scl} 'redis-cli'
805319
805319
Software Collections allows use of applications which are not located
805319
in the filesystem root hierarchy but are present in an alternative
805319
location, which is %{_scl_root} in case of the %{scl_name}
805319
collection.
805319
805319
Redis is an open source (BSD licensed), in-memory data structure store,
805319
used as database, cache and message broker. It supports data structures
805319
such as strings, hashes, lists, sets, sorted sets with range queries,
805319
bitmaps, hyperloglogs and geospatial indexes with radius queries.
805319
805319
Redis has built-in replication, Lua scripting, LRU eviction, transactions
805319
and different levels of on-disk persistence, and provides high availability
805319
via Redis Sentinel and automatic partitioning with Redis Cluster.
805319
805319
The %{?scl_prefix}redis package provides the redis and sentinel servers.
805319
805319
Redis server listens on local network soket (by default port 6379).
805319
Sentinel server listens on local network soket (by default port 26379).
805319
805319
When working with %{scl_name} collection, use the "scl" utility (see
805319
scl(1) for usage) to enable the scl environment properly.
805319
805319
Configuration for the %{scl_name} software collection is located under %{_sysconfdir}.
805319
805319
Examples:
805319
scl enable %{scl_name} 'command --arg'
805319
  Run a specific command with argument --arg within %{scl_name} software collections
805319
  environment.
805319
805319
scl enable %{scl_name} 'redis-cli'
805319
  Run redis-cli from %{scl_name} software collection.
805319
805319
scl enable %{scl_name} bash
805319
  Run interactive shell where %{scl_name} software collection is enabled.
805319
805319
%if 0%{?rhel} >= 7
805319
systemctl start %{?scl_prefix}redis
805319
%else
805319
service %{?scl_prefix}redis start
805319
%endif
805319
  Starts the redis server from %{scl_name} software collection.
805319
805319
%if 0%{?rhel} >= 7
805319
systemctl start %{?scl_prefix}redis-sentinel
805319
%else
805319
service %{?scl_prefix}redis-sentinel start
805319
%endif
805319
  Starts the sentinel server from %{scl_name} software collection.
805319