redis有expire機制,且同時有redis keyspace notification。不過預設默認的通知是關閉的~需要透過redis.conf或config set啟用。
config set notify-keyspace-events KEA
接著在c# 使用StackExchange.Redis
然後訂閱__keyevent@0__:expired 這個頻道就可以了
var redisConnection = ConnectionMultiplexer.Connect(“localhost”);
var db = redisConnection.GetDatabase();
var subscriber = redisConnection.GetSubscriber();
// 訂閱過期事件通知頻道
subscriber.Subscribe(“__keyevent@0__:expired”, (channel, key1) =>
{
// 在這裡進行過期事件的處理邏輯
// key 是過期的 Redis 鍵名
Console.WriteLine($”Key {key1} has expired.”);
});
Console.WriteLine(“Press any key to exit.”);
Console.ReadKey();
// 斷開與 Redis 的連線
redisConnection.Close();