1
vote
3answers
46 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 …
1
vote
2answers
92 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 …
0
votes
0answers
109 views
Invalid Sql Cache Dependency, SELECT TOP statements and pagination queries using ROW_NUMBER()
I have found that regular pagination methods (for example, 2 nested SELECT staments that use ROW_NUMBER() to create a temporary field) do not allow SqlCacheDependency to work properly when we set the …
0
votes
1answer
103 views
Why does stored procedure invalidate SQL Cache Dependency?
After many hours, I finally realize that I am working correctly with the Cache object in my ASP.NET application but my stored procedures stops it from working correctly.
This stored procedure works …
0
votes
1answer
103 views
Cache and SqlCacheDependency (ASP.NET MVC)
We need to return subset of records and for that we use the following command:
using (SqlCommand command = new SqlCommand(
"SELECT ID, Name, Flag, IsDefault FROM (SELECT …
2
votes
1answer
100 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 …
0
votes
1answer
85 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" …
0
votes
0answers
36 views
Why doesn’t sql cache dependency remain valid?
I can't get the SqlCacheDependency to remain valid after the ExecuteReader() instruction. Please see comment in code.
using (SqlConnection connection = new …
0
votes
0answers
48 views
Anyone ever try this: Custom VirtualPathProvider (SQL Based) with SqlCacheDependency, SQL2005 and Service Broker?
I've been toying with the VirtualPathProvider the last couple of days and have gotten to the stage where I'm serving my aspx files from a SQL database but am stuck when it come to a method of …
2
votes
5answers
382 views
Performance questions for SQL Cache Dependency
I'm working on a project where we are thinking of using SQLCacheDependency with SQL Server 2005/2008 and we are wondering how this will affect the performance of the system.
So we are wondering about …
0
votes
3answers
206 views
SQL Column name for indicating a change
Hi,
I didn't really know how to formulate the title.
But this is my problem.
We are using SqlCacheDependencies to update out cache objects. But the query behind this is "complicated" that we would …
