The Technology Aces blog is a consolidation of the personal blog posts from the individuals that help make Technology Aces the truly elite IT professionals our clients have come to recognize and depend upon.

For more information about the individual authors please follow the links to their blog. Links can be found in the post details section of each post or in the sidebar navigation located on the left side of this page.


Enabling SQL Cache Dependency within your .Net Application
Written By Mark / November 6 11:11 am

This one’s short and sweet … add the following snippet to your web.config file (within the configuration > system.web > pages node):

   1:      <caching>
   2:        <sqlCacheDependency enabled="true"/>
   3:      </caching>

and don’t forget to add the following property and value to the desired providers node:

   1:  sqlCacheDependency="CommandNotification"

and you can read more here