001-常用命令汇总

127.0.0.1:6379> help keys
  KEYS pattern
  summary: Returns all key names that match a pattern.
  since: 1.0.0
  group: generic
keys *
keys a*

注意:生产环境不建议,效率不高

DEL k1 k2 k3 k4
EXISTS k1
127.0.0.1:6379> help expire
  EXPIRE key seconds [NX|XX|GT|LT]
  summary: Sets the expiration time of a key in seconds.
  since: 1.0.0
  group: generic
127.0.0.1:6379> help ttl
  TTL key
  summary: Returns the expiration time in seconds of a key.
  since: 1.0.0
  group: generic