Redis Tutorial
- Redis - PartitioningPartitioning is the process of splitting your data into multiple Redis instances, so that every instance will only contain a subset of your keys.
- Redis - PipeliningRedis is a TCP server and supports request/response protocol. In Redis, a request is accomplished with the following steps ?
- Redis - Sorted SetsRedis Sorted Sets are similar to Redis Sets with the unique feature of values stored in a set. The difference is, every member of a Sorted Set is associated with a score, that is used in order to take the sorted set ordered, from the smallest to the greatest score.
- Redis - SetsRedis Sets are an unordered collection of unique strings. Unique means sets does not allow repetition of data in a key.
- Redis - HashesRedis Hashes are maps between the string fields and the string values. Hence, they are the perfect data type to represent objects.
- Redis - ConfigurationIn Redis, there is a configuration file (redis.conf) available at the root directory of Redis. Although you can get and set all Redis configurations by Redis CONFIG command.
Page 1 / 7Next