查看:
方法1:在redis-cli命令行使用:info clients可以查看当前的redis连接数
127001:6379> info clients
connected_clients:621
client_longest_output_list:0
client_biggest_input_buf:0
blocked_clients:0
127001:6379>
方法2:config get maxclients 可以查询redis允许的最大连接数
127001:6379> CONFIG GET maxclients
##1) "maxclients"
##2) "10000"
127001:6379>
设置:
2config set maxclients num 可以设置redis允许的最大连接数
127001:6379> CONFIG set maxclients 10
OK
127001:6379>
3启动redisservice服务时加参数--maxclients 100000来设置最大连接数限制
redis-server --maxclients 100000 -f /etc/redisconf
获取客户端信息命令
CLIENT LIST 获取客户端列表
CLIENT SETNAME 设置当前连接点redis的名称
CLIENT GETNAME 查看当前连接的名称
CLIENT KILL ip:port 杀死指定连接
CLIENT LIST
##id=3 addr=127001:36588 fd=5 name= age=7 idle=0 flags=N db=0 sub=0 psub=0 multi=-1 qbuf=0 qbuf-free=32768 obl=0 oll=0 omem=0 events=r cmd=client
CLIENT SETNAME js
##OK
CLIENT LIST
##id=3 addr=127001:36588 fd=5 name=js age=37 idle=0 flags=N db=0 sub=0 psub=0 multi=-1 qbuf=0 qbuf-free=32768 obl=0 oll=0 omem=0 events=r cmd=client
CLIENT GETNAME
##"js"
CLIENT KILL id 3
##(integer) 0
释放超时链接配置
查看超时配置
config get timeout
设置超时配置
config set timeout 600
以上就是关于Redis“气急败坏”回击:13 年来,总有人想替 Redis 换套新架构全部的内容,包括:Redis“气急败坏”回击:13 年来,总有人想替 Redis 换套新架构、Redis有哪些慢 *** 作、Redis连接数与最大连接数等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)