1. Redis
Redis是一种基于内存的NoSQL数据库。
2. Redis的安装(Windows)
(1) 下载zip文件
https://github.com/microsoftarchive/redis/releases/download/win-3.0.504/Redis-x64-3.0.504.zip
(2) 将zip文件放入一个文件夹中,然后解压。
(3) 新建startup.cmd启动文件,向文件中写入以下内容
1
| redis-server redis.windows.conf
|
(4) 双击startup.cmd文件即可启动redis。
Redis运行在6379端口
(5) 双击redis-cli.exe文件,打开redis客户端。
可以执行以下测试
3. Redis的安装(Linux)
(1) 下载redis压缩包
(2) 解压
(3) 执行make命令进行编译
(4) 编译完成后,目录下会出现编译后的redis服务程序redis-server,还有用于测试的客户端程序redis-cli,
(5) 启动redis服务
(6) 启动redis客户端
测试:
1 2 3 4 5 6 7 8
| 127.0.0.1:6379> SET name auth OK 127.0.0.1:6379> GET NAME (nil) 127.0.0.1:6379> GET name "auth" 127.0.0.1:6379> ping PONG
|
删除key
1 2
| 127.0.0.1:6379> DEL subject (integer) 1
|