Redis入門學習(二):下載安裝

Linux操做系統
Download, extract and compile Redis with:
$ wget http://download.redis.io/releases/redis-4.0.11.tar.gz
$ tar xzf redis-4.0.11.tar.gz
$ cd redis-4.0.11
$ make
The binaries that are now compiled are available in the src directory. Run Redis with:
$ src/redis-server
You can interact with Redis using the built-in client:
$ src/redis-cli
redis> set foo bar
OK
redis> get foo
"bar"html

啓動Redis服務:git

Redis內置客戶端:github

PS:運行Redis的最佳系統時Linux和Mac OS,官方推薦的生產系統時Linux。 redis

 

Windows操做系統
下載地址:https://github.com/MSOpenTech/redis工具

 

 

紅框處第一個爲msi安裝版本,第二個爲release版本,直接運行exe便可。
msi安裝配置參考:http://www.cnblogs.com/jaign/articles/7920588.html
直接運行版本:學習

 redis-cli,即Redis Command Line Interface是Redis自帶的基於命令行的Redis客戶端,也是咱們學習和測試Redis的重要工具。測試

相關文章
相關標籤/搜索