I remark that for my project I really need often something to manage a cache of our data(for data access performance, for offline work, ...).
So I was asking me if there was something which could respond to my needs or if I will have to create my own framework for this. It can be only a "Core" which furnish the logic, and we have to implement the business part.
My needs are:
- Data sources can be WCF/Web service/...(this part should be implemented on every new project
- It has to manage an store of data available
- This store must be refreshed regularly by polling the service
- This store can be persistent(write cache on disk for the next start)
- The framework must allows modifications, online and offline, asynchronous and synchronous(if online)
- It has to run with c# 4.0
- If the local cache store can be accessed through LINQ, it would be great(like directly through a list
- The concurrency has to be managed(or offer us a way to manage it)
- The use/configuration of this framework should be shorter than implement myself it every time
So here we are, do you know a tools which can fits into my query?
Somebody tell me that MS entreprise library should have something like that, but I didn't found anything.
Thank you!