python-redis 重要参数

socket_connect_timeout、socket_timeout 区别

  • 一个是连接超时,一个是io超时
  • 使用中,必须使用socket_timeout, 否则redis 操作会永久堵塞
  • socket_timeout > command(timeout), 如一些堵塞命令的超时
  • 必要时可以使用socket_keepalive 参数
    python-redis 重要参数_第1张图片

判断redis 慢查询

  • 查看配置,

    • cnofig get slowlog-log-slower-than
    • cnofig get slowlog-max-len
  • slowlog get
  • 集群状态命令

    • cluster info
    • cluster nodes
    • info

你可能感兴趣的:(pythonredis)