Browsing index pages (3 articles)
↧
Caching factory design
I have a factory class XFactory that creates objects of class X. Instances of X are very large, so the main purpose of the factory is to cache them, as transparently to the client code as possible....
View ArticleAnswer by Alex for Caching factory design
Your concerns are very much valid and they tell me your original easy caching solution is eventually becoming part of your architecture which naturally brings a new level of issues as you described...
View ArticleAnswer by scarfridge for Caching factory design
The way I see it the cache is fine - X is not. IMHO de-serialization of single instances should not be an issue of the cache. It is a task for the according class. The main issue here is that this...
View Article
Browsing index pages (3 articles)