gpt4 book ai didi

c# - 你能在 Redis c# 中检索 TTL 吗?

转载 作者:行者123 更新时间:2023-11-30 19:25:25 25 4
gpt4 key购买 nike

有没有办法在 C# 中获取 StackExchange.Redis key 的 TTL(生存时间)?

最佳答案

我对 Redis 的经验很少,但我相信您指的是:( http://redis.io/commands/ttl)。

如果是这样,请尝试在您的数据库连接对象上运行 .KeyTimeToLive("RedisKeyHere")。

看例子:

class Program
{
static void Main(string[] args)
{

ConnectionMultiplexer redis = ConnectionMultiplexer.Connect("localhost");

var db = redis.GetDatabase(0);
var timeToLive = db.KeyTimeToLive("RedisKeyNameHere");

}
}

希望这些信息对您有所帮助!

关于c# - 你能在 Redis c# 中检索 TTL 吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28797253/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com