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
932 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
114 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
2answers
2k 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
379 views
how to use sqlcachedependency for each user in asp.net mvc
I have an application in asp.net mvc (C#), in which each user have different products sharing a common table separated by user id.
I need to implement SqlCacheDependency for each user's products.
...
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
1answer
352 views
Delete HttpRuntime.Cache items from an other application
I have an admin application in which I manipulate my objects in the db, and a public asp.net mvc application which is mostly for viewing these objects.
I have implemented a simple caching for a few ...
1
vote
3answers
729 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
2answers
56 views
SqlCacheDependency not working when using SqlCommand for cache-key
This code works fine, it invalidates the data whenever it is changed in the database:
AggregateCacheDependency aggDep = new AggregateCacheDependency();
...
0
votes
1answer
37 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
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
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
0answers
115 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
2answers
158 views
Unable to invalidate the cache dependent on sql query
I am trying to invalidate the cache based on the change in the rows of the database. I have achieved success while doing the same thing with linq with the same database and table but Iam not able to ...
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
206 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
139 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
2answers
832 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 ...
0
votes
1answer
469 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" ...