Redis 7.0支持的新特性说明 本文介绍Redis 7.0支持的新特性说明 新增COMMAND DOCS命令 可以输出命令的文档信息 redis> COMMAND DOCS SET 1) "set" 2) 1) "summary" 2) "Sets the string value of a key, ignoring its type. The key is created if it doesn't exist." 3) "since" 4) "1.0.0" 5) "group" 6) "string" 7) "complexity" 8) "O(1)" 9) "history" 10) 1) 1) "2.6.12" 2) "Added the EX, PX, NX and XX options." 2) 1) "6.0.0" 2) "Added the KEEPTTL option." 3) 1) "6.2.0" 2) "Added the GET, EXAT and PXAT option." 4) 1) "7.0.0" 2) "Allowed the NX and GET options to be used together." 11) "arguments" 12) 1) 1) "name" 2) "key" 3) "type" 4) "key" 5) "displaytext" 6) "key" 7) "keyspecindex" 8) (integer) 0 2) 1) "name" 2) "value" 3) "type" 4) "string" 5) "displaytext" 6) "value" 3) 1) "name" 2) "condition" 3) "type" 4) "oneof" 5) "since" 6) "2.6.12" 7) "flags" 8) 1) "optional" 9) "arguments" 10) 1) 1) "name" 2) "nx" 3) "type" 4) "puretoken" 5) "displaytext" 6) "nx" 7) "token" 8) "NX" 2) 1) "name" 2) "xx" 3) "type" 4) "puretoken" 5) "displaytext" 6) "xx" 7) "token" 8) "XX" 4) 1) "name" 2) "get" 3) "type" 4) "puretoken" 5) "displaytext" 6) "get" 7) "token" 8) "GET" 9) "since" 10) "6.2.0" 11) "flags" 12) 1) "optional" 5) 1) "name" 2) "expiration" 3) "type" 4) "oneof" 5) "flags" 6) 1) "optional" 7) "arguments" 8) 1) 1) "name" 2) "seconds" 3) "type" 4) "integer" 5) "displaytext" 6) "seconds" 7) "token" 8) "EX" 9) "since" 10) "2.6.12" 2) 1) "name" 2) "milliseconds" 3) "type" 4) "integer" 5) "displaytext" 6) "milliseconds" 7) "token" 8) "PX" 9) "since" 10) "2.6.12" 3) 1) "name" 2) "unixtimeseconds" 3) "type" 4) "unixtime" 5) "displaytext" 6) "unixtimeseconds" 7) "token" 8) "EXAT" 9) "since" 10) "6.2.0" 4) 1) "name" 2) "unixtimemilliseconds" 3) "type" 4) "unixtime" 5) "displaytext" 6) "unixtimemilliseconds" 7) "token" 8) "PXAT" 9) "since" 10) "6.2.0" 5) 1) "name" 2) "keepttl" 3) "type" 4) "puretoken" 5) "displaytext" 6) "keepttl" 7) "token" 8) "KEEPTTL" 9) "since" 10) "6.0.0" redis>
来自: