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 458 forks source link

Store and Restore Cached Data #276

Closed NGame1 closed 5 years ago

NGame1 commented 5 years ago

Hi and thanks for the great library. I'm working on a UWP project and using DictionaryHandle and JSON serializer for my project. Is there any way to save cached data into a file or somewhere else and restore them on the next launch? Thanks.

MichaCo commented 5 years ago

No, cache!=persistent store. There are many options to persist data though. Files, Databases.. Redis has different options to persist the cached data, too, in case that's an option for you.