Caching Patterns in ASP.NET - Stack Overflow most recent 30 from stackoverflow.com 2009-11-25T07:27:13Z http://stackoverflow.com/feeds/question/33469 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/33469/caching-patterns-in-asp-net 5 Caching Patterns in ASP.NET Chris 2008-08-28T21:43:16Z 2009-07-10T08:52:19Z <p>So I just fixed a bug in a framework I'm developing. The pseudo-pseudocode looks like this:</p> <pre><code>myoldObject = new MyObject { someValue = "old value" }; cache.Insert("myObjectKey", myoldObject); myNewObject = cache.Get("myObjectKey"); myNewObject.someValue = "new value"; if(myObject.someValue != cache.Get("myObjectKey").someValue) myObject.SaveToDatabase(); </code></pre> <p>So, essentially, I was getting an object from the cache, and then later on comparing the original object to the cached object to see if I need to save it to the database in case it's changed. The problem arose because the original object is a reference...so changing someValue also changed the referenced cached object, so it'd never save back to the database. I fixed it by cloning the object off of the cached version, severing the reference and allowing me to compare the new object against the cached one.</p> <p>My question is: <strong>is there a better way to do this, some pattern, that you could recommend?</strong> I can't be the only person that's done this before :)</p> http://stackoverflow.com/questions/33469/caching-patterns-in-asp-net/33507#33507 1 Answer by Craig Walker for Caching Patterns in ASP.NET Craig Walker 2008-08-28T22:02:53Z 2008-08-28T22:02:53Z <p>I've done similar things, but I got around it by cloning too. The difference is that I had the cache do the cloning. When you put an object into the cache, the cache will clone the object first and store the cloned version (so you can mutate the original object without poisoning the cache). When you get an object from the cache, the cache returns a clone of the object instead of the stored object (again so that the caller can mutate the object without effecting the cached/canonical object).</p> <p>I think that this is perfectly acceptable as long as the data you're storing/duping is small. </p> http://stackoverflow.com/questions/33469/caching-patterns-in-asp-net/33795#33795 7 Answer by Mark Brackett for Caching Patterns in ASP.NET Mark Brackett 2008-08-29T01:51:02Z 2008-08-29T01:51:02Z <p>Dirty tracking is the normal way to handle this, I think. Something like:</p> <pre><code>class MyObject { public string SomeValue { get { return _someValue; } set { if (value != SomeValue) { IsDirty = true; _someValue = value; } } public bool IsDirty { get; private set; } void SaveToDatabase() { base.SaveToDatabase(); IsDirty = false; } } myoldObject = new MyObject { someValue = "old value" }; cache.Insert("myObjectKey", myoldObject); myNewObject = cache.Get("myObjectKey"); myNewObject.someValue = "new value"; if(myNewObject.IsDirty) myNewObject.SaveToDatabase(); </code></pre> http://stackoverflow.com/questions/33469/caching-patterns-in-asp-net/1108466#1108466 0 Answer by johnllao for Caching Patterns in ASP.NET johnllao 2009-07-10T08:52:19Z 2009-07-10T08:52:19Z <p>I agree with the dirty caching technique. You may try CSLA.NET business object framework for that scenario. </p>