Tagged Questions

6
votes
2answers
109 views

Is Caching in C# the right approach for me?

I've tried to read up on Caching in ASP.NET and still have a few questions. When using a Sql Cache Dependency ... I know that you can specify which tables will be monitored but if a change happens ...
5
votes
3answers
934 views

Extending ASP.NET data cache to be shared across web farm

I have an ASP.NET application that makes extensive use of ASP.NET cache API for caching commonly-used data. In addition, I am using polling-based sql cache dependency to track expiration. The ...
3
votes
1answer
116 views

SqlCacheDependency on Views and Procedures

I want to use SqlCacheDependency with the views and procedures. I am using Linq to Sql. The code i am currently using is valid only if you are using a Single Table: public static List<T> ...
3
votes
3answers
497 views

Clear the cache at a specific time in ASP.NET 2.0

So I have a process which runs at midnight which sets a start and end point for a flash object. This only needs to run once a day, so I'm obviously caching the result set. However, the problem I'm ...
2
votes
1answer
67 views

Column Specific SqlCacheDependency in ASP.NET

I want to have a column specific SqlCacheDependency. The Row Specific SqlCacheDependency is valid but i dont know how can i make Column Specific SqlCacheDependency Example: The query: SELECT ...
2
votes
2answers
126 views

Global settings for ASP.NET website

I'm trying to create a sort of global settings for a website and store this data on the database, however I keep thinking that may not be very efficient as these settings will have to be read on every ...
2
votes
2answers
3k views

Enabling Service Broker in SQL Server 2008

I am integrating SqlCacheDependency to use in my LinqToSQL datacontext. I am using an extension class for Linq querys found here - http://code.msdn.microsoft.com/linqtosqlcache I have wired up the ...
2
votes
1answer
484 views

ASP.NET set cache dependency with a SqlCommand

Is this an effective way to set the cache item dependent on the query? HttpRuntime.Cache.Insert( "ListLanguages", list, new ...
1
vote
2answers
75 views

SqlCacheDependency with LINQ2SQL (Repository Pattern)

I am using L2S Repository pattern in my ASP.Net 3.5 web app. But I am not quite satisfied with the performance as experienced on the live. I searched google and came across SQL Caching using ...
1
vote
1answer
76 views

auto refreshing page when data in database is changed

my page is using sqlcachedependency. so the page read information from cache until data in database is changed but i need the page was auto refresh when data is changed. How can i do that?
1
vote
1answer
158 views

SqlDependency.Start An attempt to attach an auto-named database for file failed

iv'e got copy of NORTHWND.mdf along with NORTHWND.LOG in my App_Data folder MY CONNECTION STRING : <add name="northwind_connection" connectionString="Data ...
1
vote
1answer
201 views

Cache invalidation notification SqlCacheDependency

I am trying to create SQL cache dependency for some reference data in my ASP.NET application (ASP.NET 3.5, SQL 2008). I have enabled sql caching for my database and a couple of tables using ...
0
votes
1answer
21 views

Caching a SQL Server Query with Multiple Result Sets

I am trying to cache a SQL Stored Procedure with multiple results sets by making use of the SQLCacheDependency class. The first three queries in the stored procedure are queries that are general to ...
0
votes
1answer
53 views

SqlCacheDependency with SqlCommand not working

Having problems with implementing very basic SqlCacheDependency prototype. Have tried this with a sproc but now I'm down to straight command execution. public SqlCommand GetReadCommand(int ID) ...
0
votes
0answers
18 views

Do I need to specify the same query for SqlCacheDependency which I used to query the db?

Lets say I use a query as below to get a large result set. Select UserID,FirstName, LastName, City, Age from UserInfo where DateDiff(d,GetDate,LastActiveOn) > 180 Now, I want to cache each ...
0
votes
1answer
38 views

SqlCacheDependency does not seem to have OnChange event?

I am trying to Cache a few data objects, which are used very frequently and thus are queried very often loading the db server. However these do not change that frequently, making them good candidates ...
0
votes
2answers
68 views

Find underlying tables of views using Linq to Entity to make Aggregate Dependencies

I have a function: public static List<T> EntityCache<T>(this System.Linq.IQueryable<T> q, ObjectContext dc, string CacheId) { try { List<T> ...
0
votes
1answer
59 views

Effect on SqlCacheDependency and Broker Service when database schema change

I am creating an application with Sql cached dependency. For this i enabled the broker by Alter database test ENABLE_BROKER After i add two new tables to the database. But i found that i am not ...
0
votes
0answers
48 views

Data dependency caching and cache not initialized

This is my code: public DataTable SqlDependency() { DataTable dt = null; if (HttpContext.Current.Cache[str] == null) { string cstr = ...
0
votes
1answer
350 views

High CPU Usage on SQL Server Caused by SqlCacheDependency

We are experiencing an issue where our sql server where cpu usage jumps to and remains at 100% until the site is taken down and restarted. We have gone through the code and optimized everything we ...
0
votes
0answers
18 views

Can I reset the ChangeId in Cache Table for Change Notification

What happens if I reset the changeId value in the table AspNet_SqlCacheTablesForChangeNotification One of the rows is currently maxed out at 2.x billion, and our updates are failing. I tried ...
0
votes
1answer
78 views

SqlCacheDependency & custom table change

We are using a third party who's own implementation of caching has very poor performance rates when we measure making requests via their API and their database. Their database (Sql Sever 2005 - ...
0
votes
0answers
117 views

SQL Cache Dependency using asp.net 4.0 (ADO.NET)?

Can somebody guide me for SQL Cache Dependency using asp.net 4.0 (ADO.NET)? Searched on net.. i could fine with LINQ to SQL. HERE Please guide me in ASP.NET 4.0.
0
votes
0answers
126 views

SQL Cache dependency and transactions

I'm using Sql cache dependency on several places on my site. I started opening a transaction on begin request so I have a transaction alive for the whole request (NHibernate Open Session in View ...
0
votes
1answer
100 views

PHP version of ASP.NET's SqlCacheDependency

I find the SqlCacheDependency very useful when writing C# ASP.NET applications, and would love to use something similar in my PHP applications. Can anyone suggest something? SqlCacheDependency caches ...
0
votes
0answers
207 views

Asp.net sql cache dependency programmatically configuration

I've a question regarding SqlCacheDependency configuration. Every resource I've read requires the developer to define the polled databases into web.config. This is not a good scenario for our ...
0
votes
0answers
141 views

Caching and cache invalidation in user controls?

HI, In our .aspx pages we have many user controls. each user control executes a sql query. The caching mechanism to be followed is to fragment cache each user control on the page and add the query ...
0
votes
4answers
2k views

SQL Cache Dependency not working with Stored Procedure

I can't get SqlCacheDependency to work with a simple stored proc (SQL Server 2008): create proc dbo.spGetPeteTest as set ANSI_NULLS ON set ANSI_PADDING ON set ANSI_WARNINGS ON set ...
0
votes
1answer
470 views

How do I check if SqlCacheDependency is enabled at runtime?

I am using SqlCacheDependency with polling in an ASP.NET project. Sometimes, I need to disable SqlCacheDependency, which I do as follows: <caching> <sqlCacheDependency enabled="false" ...