I am hashing a value to a key in my Redis.
_redis.GetDatabase(0).HashSet("db", "key1" , "value");
I also want to set the expiration time of 30 days to this key. I did not find any way to do so. Are there any possible ways to set an expiration time right after setting the value?