cgerecke wrote:
So, LLBLGen doesn't cache any data at all? Even if I decide to use the Velocity cache from Microsoft or even just the ASP.NET cache...LLBLGen cannot take advantage of it? Can this be confirmed one way or the other?
Thank You,
Vish
We don't cache data. This might sound odd, at first, but please read my article about caching inside o/r mappers
The point is that if you query for data, a cache like velocity or ncache, the o/r mapper has to decide if, say, 10% of the entities are in the cache or not, but that's not doable without querying first, mitigating the reason why you want to cache in the first place.
The solution thus is: cache the data yourself if you want to, or better: cache the processed results (like in a webapp, cache parts of pages which are rendered after the data has been processed .This is more efficient than reading data from a cache).