Installation of redis series articles (windows, linux) (1)

Introduction to Redis Redis
is a key-value storage system. Similar to Memcached, it supports storage of relatively more value types, including string (string), list (linked list), set (collection), zset (sorted set – ordered collection) and hash (hash type). These data types all support push/pop, add/remove, intersection union and difference, and richer operations, and these operations are atomic. On this basis, redis supports sorting in various ways. Like memcached, data is cached in memory to ensure efficiency. The difference is that redis will periodically write updated data to disk or write modification operations to additional record files, and on this basis achieve master-slave (master-slave) synchronization. Redis is generally deployed on linux servers, but we can also learn its installation and configuration on windows.

Guess you like

Origin http://10.200.1.11:23101/article/api/json?id=326751892&siteId=291194637