.net Artchitecture that works like - Cache everything, read from cache
Posted
by Lakhlani Prashant
on Stack Overflow
See other posts from Stack Overflow
or by Lakhlani Prashant
Published on 2010-06-12T04:40:44Z
Indexed on
2010/06/12
4:53 UTC
Read the original article
Hit count: 326
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
© Stack Overflow or respective owner