I'm trying to answer these questions about dataType in redis as it becomes so confusing for me.
- if I want to store a string data or List<string> data in redis ,what would be the real format of data stored in Redis ?
- What would be considered as Set in Redis ? what kind of data structure in c# consider as Set and can be stored there?
- What's is different between redisClient.Set() and redisClient.SAdd() from IRedisNativeClient Interface in ServiceStack and for what kind of dataType I should use them ?
Thanks