February 2018
Intermediate to advanced
382 pages
11h 33m
English
In the preceding example, we have guided you step by step through the process of setting up a Redis Cluster. The first step we took is to prepare the configuration file for each Redis instance:
cluster-enabled yescluster-config-file nodes-6381.confcluster-node-timeout 10000
After specifying a different listening port and data path for each instance separately, we enabled the Cluster feature by setting the cluster-enabled option to yes. Moreover, for each Redis instance, there is a Cluster node configuration file which will be generated during the setup of Redis Cluster, and can be modified every time some Cluster information should be persisted. The cluster-config-file option sets the name of this configuration file.
The Cluster ...
Read now
Unlock full access