如何在 SET Redis 命令中使用日期和时间

如何在 SET Redis 命令中使用日期和时间

我刚刚在 Debian 8.7.1 上安装了稳定版本的 Redis 服务器。到目前为止一切正常。我想知道如何在 SET 条目中使用当前日期和时间。例如:

SET test:test "[current date] [current hour + 1]"

或者如果没有选择,那么有解决方法吗?

我认为这个问题不需要更多信息,但如果您需要其他信息,请询问。

谢谢。

答案1

var="SET test:test \"[$(date +%d.%m.%Y)] [$((($(date +%H)+1)%24))]\""
echo "$var"
    SET test:test "[30.03.2018] [2]"

相关内容