redis01

作者: 獨自去遠方 | 来源:发表于2019-04-28 01:32 被阅读0次

Redis is an open source (BSD licensed), in-memory data structure store, used as a database, cache and message broker.

image.png

redis的全称是remote dictionary server(远程字典服务器),它以字典结构存储数据,并允许其他应用通过TCP协议读写字典中的内容。


image.png

window安装
1.下载--window下载地址
2.解压,使用redis所在路径配置环境变量
3.打开命令窗口 redis-server.exe启动

linux安装
1.下载redis的安装包
2.tar -zxvf 解压
3.cd 到解压后的目录
4.执行make 完成编译

  1. make test 测试编译状态
  2. make install {PREFIX=/path}
redis可执行文件 作用
Redis-server Redis服务器
Redis-cli Redis命令行客户端
Redis-benchmark Redis性能测试工具
Redis-check-aof Aof文件修复工具
Redis-check-dump Rdb文件检查工具
Redis-sentinel Sentinel服务器(2.8以后)

启动redis:redis-server ../redis.conf
  服务器启动后默认使用的是6379的端口;通过--port可以自定义端口 (Redis-server --port 6380)
  以守护进程的方式启动,需要修改redis.conf配置文件中daemonize yes
停止redis:redis-cli SHUTDOWN

相关文章

网友评论

      本文标题:redis01

      本文链接:https://www.haomeiwen.com/subject/zanknqtx.html