Benchmark性能测试
作者:互联网
Benchmark性能测试
# 启动本地redis 进入redis安装目录
redis-server
# 性能测试 -c 并发数量 -n 查询数量 请求localhost:6379端口 并发100 查询数量10w
redis-benchmark -h localhost -p 6379 -c 100 -n 100000
redis 性能测试工具可选参数列表
参考:https://www.runoob.com/redis/redis-benchmarks.html
标签:Benchmark,性能,redis,6379,测试,100,localhost 来源: https://www.cnblogs.com/Oh-mydream/p/15927247.html