1d5406a301
* [FIX] MOVE now moves the TTL as well. A bug lasting forever... finally fixed thanks to Andy Grunwald that reported it. * [FIX] Fix a false positive in HSTRLEN test. * [FIX] Fix a bug in redis-cli --pipe mode that was not able to read back replies from the server incrementally. Now a mass import will use a lot less memory, and you can use --pipe to do incremental streaming. * [FIX] Slave detection of master timeout. * [NEW] Cluster: redis-trib fix can fix an additional case for opens lots. * [NEW] Cluster: redis-trib import support for --copy and --replace options OBS-URL: https://build.opensuse.org/package/show/server:database/redis?expand=0&rev=72 |
||
---|---|---|
.gitattributes | ||
README.SUSE | ||
redis-3.0.5.tar.gz | ||
redis-conf.patch | ||
redis-enable-bactrace-on-x86-and-ia64-only.patch | ||
redis-initscript.patch | ||
redis.changes | ||
redis.logrotate | ||
redis.spec | ||
redis.target | ||
redis.tmpfiles.d | ||
redis@.service |
README.SUSE ------------- 1. copy /etc/redis/default.conf.example to /etc/redis/default.conf (or /etc/redis/otherapp.conf and so on) For the example we will use otherapp.conf 2. change at least pidfile, logfile and dir setting # the pid file *has* to match your config filename without the ".conf" pidfile /var/run/redis/otherapp.pid logfile /var/log/redis/otherapp.log dir /var/lib/redis/otherapp/ If you want to run more than one instance you also have to change the socket path and/or the ip:port combination. Also make sure if you copy configurations from somewhere, that "daemonize" should be set to "no". 3. create the database dir: $ install -d -m redis -g redis -m 0750 /var/lib/redis/otherapp/ 4. systemctl start redis@otherapp 5. systemctl enable redis@otherapp 6. to interact with all instances at the same time use: systemctl restart redis.target systemctl stop redis.target