Tag Archives: caching

NHibernate Membase caching provider

Enyim has made a nice client library for both Memcache and Membase. Membase can be used as a free distributed caching platform. With the new provider model introduced in ASP.NET 4, it is now possible to write providers for output … Continue reading

Posted in Development | Tagged , , , , | 19 Comments

Membase local development machine ip problem – FIXED

Membase caching stops working I struggled with Membase last night. I added NHibernate 2. level caching, Asp.net Session caching, Output caching and custom caching to some new Membase providers. It worked at first, but then suddenly nothing was cached, and … Continue reading

Posted in Development, Software | Tagged , , , , , | Leave a comment

Membase cache item expiration issue

Membase can be used as a distributed caching platform, and best of all… it is free to use. This is from their website: Unlimited use in development and up to two nodes may be deployed for free in a production … Continue reading

Posted in Development, Software | Tagged , , , | Leave a comment

Using SQL Cache Dependencies

Original post here: http://www.asp.net/learn/data-access/tutorial-61-cs.aspx — Introduction The caching techniques examined in the Caching Data with the ObjectDataSource and Caching Data in the Architecture tutorials used a time-based expiry to evict the data from the cache after a specified period. This … Continue reading

Posted in Development | Tagged , , , , | Leave a comment

Caching Data in the Architecture

Original post here: http://www.asp.net/learn/data-access/tutorial-59-cs.aspx — Introduction As we saw in the preceding tutorial, caching the ObjectDataSource’s data is as simple as setting a couple of properties. Unfortunately, the ObjectDataSource applies caching at the Presentation Layer, which tightly couples the caching … Continue reading

Posted in Development | Tagged , , , | Leave a comment

Caching Data with the ObjectDataSource

Original post here: http://www.asp.net/learn/data-access/tutorial-58-cs.aspx — Introduction In computer science, caching is the process of taking data or information that is expensive to obtain and storing a copy of it in a location that is quicker to access. For data-driven applications, … Continue reading

Posted in Development | Tagged , , | Leave a comment