摘要:
Redis基础知识 redis默认有16个库 # 连接数据库 连接本地redis redis-cli # 连接远程redis redis-cli -h host -p port -a password # 验证连接 如成功应该返回pong ping # 切换至3号数据库[0-15] select 3 阅读全文
摘要:
Benchmark性能测试 # 启动本地redis 进入redis安装目录 redis-server # 性能测试 -c 并发数量 -n 查询数量 请求localhost:6379端口 并发100 查询数量10w redis-benchmark -h localhost -p 6379 -c 100 阅读全文