2 天后删除 Elasticache Redis 中的数据

Delete data in Elasticache Redis after 2 days

我正在使用 Redis 存储 json 消息,这些消息需要被其他服务使用。我希望数据在Redis中保存2天,2天后需要删除数据

有什么方法可以实现吗?

您可以使用 EXPIRE 命令设置按键超时。详情见doc

假设您将数据存储在 String—which is likely if you're suing ElastiCache—you can SET the value and EXPIRE it in a single command:

SETEX foo 172800 value