Implementing Custom CacheDependency to invalidate ASP.Net cache item

Posted by Ajay on Stack Overflow See other posts from Stack Overflow or by Ajay
Published on 2008-11-19T19:14:06Z Indexed on 2010/04/30 11:07 UTC
Read the original article Hit count: 446

Filed under:
|
|
|

Hi,

I want to implement my own customCacheDependency class by deriving base CacheDependency, as provided SqlCacheDependency is not suitable for my case. (thousands of cache items, and there will so many subscriptions in SQL as well as issues with registration in ASP.Net)

I want to use this in ASP.Net VirtualPathProvider's our custom implementation, so I can pass this CustomCacheDependecy to notify the asp.net that file content in the DB has changed.

Can some one point me to any custom implementation of CacheDependency (preferably using MessageQueue)?

Thanks & Regards, Ajay

© Stack Overflow or respective owner

Related posts about ASP.NET

Related posts about .NET