Am new to Redis. I am able to store and retrieve data to redis using this commands
hmset user:user1 12 13 14 15
and also am to retrieve data by
hgetall user:user1
i want to do the same using stackExchange.redis on my c# program. how should i do this in c#?