Caching Patterns in ASP.NET - Stack Overflow most recent 30 from stackoverflow.com2009-11-25T07:27:13Zhttp://stackoverflow.com/feeds/question/33469http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/33469/caching-patterns-in-asp-net5Caching Patterns in ASP.NETChris2008-08-28T21:43:16Z2009-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#335071Answer by Craig Walker for Caching Patterns in ASP.NETCraig Walker2008-08-28T22:02:53Z2008-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#337957Answer by Mark Brackett for Caching Patterns in ASP.NETMark Brackett2008-08-29T01:51:02Z2008-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#11084660Answer by johnllao for Caching Patterns in ASP.NETjohnllao2009-07-10T08:52:19Z2009-07-10T08:52:19Z<p>I agree with the dirty caching technique. You may try CSLA.NET business object framework for that scenario. </p>