set 命令可选参数

interface SetOption {
    ex?: number;
    nx?: boolean;
    xx?: boolean;
}

Properties

Properties

ex?: number

将键的过期时间设置为指定秒秒数,不设置则默认不超时

nx?: boolean

可选参数, 如果设置为 true 则表示只在键不存在时,才对键进行设置操作。

xx?: boolean

可选参数, 如果设置为 true 则表示只在键已经存在时, 才对键进行设置操作。