I am trying to use
redis.mapped_mset({ "f1" => "v1", "f2" => "v2" })
to set multiple keys into Redis
and I can not set expire time at the same time.The only way to set expire time to to use this:
set(key, value, options = {})
or
expire(key, seconds)
I have to call many times and this is not what I want to see.Are there any other ways to solve this problem?