How to store list element in Redis cache

I have used StackExchange.Redis for c# redis cache. cache.StringSet(“Key1”, CustomerObject); but I want to store data like cache.StringSet(“Key1”, ListOfCustomer); so that one key has all Customer List stored and it is easy to search,group,filter customer Data also inside that List Answers are welcome using ServiceStack.Redis or StackExchange.Redis You can use ServiceStack.Redis high-level IRedisTypedClient Typed API… Read More How to store list element in Redis cache