1. 程式人生 > >Windows中Redis的安裝與使用

Windows中Redis的安裝與使用

版本:Redis-x64-3.2.100 Windows x64

一、下載地址:https://github.com/MSOpenTech/redis/releases

二、解壓,檔案目錄簡單介紹

檔名 簡述
redis-benchmark.exe 基準測試
redis-check-aof.exe aof
redischeck-dump.exe dump
redis-cli.exe 客戶端
redis-server.exe 服務端
redis.windows.conf 配置檔案

三、開啟 redis-service.exe,啟動服務端

四、開啟 redis-cli.exe,啟動客戶端,命令操作

Redis 常用命令:Redis命令

以上就完成了在 Windows 中 Redis 的搭建與簡單使用。

五、啟動 redis-service.exe 的方式,我們的服務視窗不能關閉,關閉後服務即停止,客戶端就無法使用,所以,我們可以配置 Redis 的後臺啟動服務。

在 Redis 的安裝目錄中 按著 Shift 鍵右擊滑鼠,開啟 命令視窗,在命令視窗中可執行下面的命令。

1、安裝服務 
redis-server –service-install redis.windows.conf –loglevel verbose

2、啟動服務 
redis-server –service-start

3、停止服務 
redis-server –service-stop 

4、解除安裝服務 
redis-server –service-uninstall

官方文件:Redis Service