.net Artchitecture that works like - Cache everything, read from cache
- by Lakhlani Prashant
Hi I want a sample that does following:
Database <- Data Access + Cache <- Business logic <- UI
so basically everything you want from database should be accessible from cache, if it's not in cache, underlying data access layer will populate if and return it otherwise returned from cache
is there any disadvantage? in what scenerios this could be a good solution