</>
Tutorials

Redis Tutorial

  • Redis - Partitioning
    Partitioning is the process of splitting your data into multiple Redis instances, so that every instance will only contain a subset of your keys.
  • Redis - Pipelining
    Redis is a TCP server and supports request/response protocol. In Redis, a request is accomplished with the following steps ?
  • Redis - Sorted Sets
    Redis 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 - Sets
    Redis Sets are an unordered collection of unique strings. Unique means sets does not allow repetition of data in a key.
  • Redis - Hashes
    Redis Hashes are maps between the string fields and the string values. Hence, they are the perfect data type to represent objects.
  • Redis - Configuration
    In 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