1.Redis Introduction
Redis is an open source API that is written in ANSI C, supports the web, can be persisted in memory, key-value databases, and provides multiple languages.
Redis provides five data types: String,hash,list,set and Zset (sorted set), and supports rich operations such as Push/pop, Add/remove, and intersection, set, and difference sets, all of which are atomic in nature.
In summary, Redis is an open source, multi-language API-rich, high-performance, atomic, and durable KV system that supports multiple languages.
2.Redis Installation
Redis for Linux is officially supported, installation and use of nothing to say, ordinary use in accordance with official guidance can, for details, please refer to: http://redis.io/download.
And for the sake of learning convenience, I chose Microsoft Open Tech to maintain the win version, download the corresponding MSI installation package (REDIS-X64-2.8.2400.MSI) from its GitHub, directly double-click the installation, all the default settings.
After installation, the installation directory is as follows:
Double-click Redis-cli to open the client program for a simple test:
Related website:
Redis Official website: http://redis.io/
Microsoft Open Tech:https://github.com/msopentech/redis
Redis Chinese Learning website: http://www.redis.cn/
Redis Command Daquan: http://doc.redisfans.com/
Getting Started with Redis (i)