redis常见操作

  • Post author:
  • Post category:其他




通过客户端连接到redis server

./redis-cli -h IP -p port -a ‘password’



查看redis状态,内存等信息

info



查看redis当前的连接Ip

./redis-cli -h IP -p port -a ‘test’ client list | awk ‘{print $2}’|cut -d = -f 2| cut -d : -f 1 | sort | uniq -c | sort -rn



版权声明:本文为tyllb1234原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。