MichaCo / CacheManager

CacheManager is an open source caching abstraction layer for .NET written in C#. It supports various cache providers and implements many advanced features.
http://cachemanager.michaco.net
Apache License 2.0
2.33k stars 457 forks source link

CacheManager.StackExchange.Redis add list type data problem #349

Closed landonzeng closed 3 years ago

landonzeng commented 3 years ago

I'm using CacheManager.StackExchange.Redis in my NetCore 3.1 project, and when I added a cache, I deposited a list, but when I checked it with RDM, I found that it was a HASH type, not a list type, so how do I add a list to it, because I want to add a list in I want to add data or modify data, I just need to update the object corresponding to the list, not to read out all the data of the key, then operate on the list, and then stuff it into the key, I am worried that the performance loss will be large, what is a good solution?