Questions tagged [data-caching]

For questions relevant with caching of the data, not the instructions.

A cache can store data or instructions, to increase performance of our programs. data-caching has to do with caches that store data.

35 questions
0
votes
1 answer

How to disable application restart after deleting a directory In ASP.NET 4?

After deleting a directory in asp.net the application will restart and I will lose all my session and the cache will clear. So I found the following solution; I Put the following code in the Application_Start of Global.asax to disable disable…
shiva
  • 1
  • 3
0
votes
0 answers

Make a User Control or Page Cache Vary on contents of a cached Dictionary

Yesterday, I spent some time thinking about caching. Specifically, caching data. I am using ASP.NET 4.0, coding in VB. I'm using a MySQL database, so cannot use the SQL Server-only sqlDependency. It is important to me that all data changes are acted…
0
votes
3 answers

Any way to cache an object using an outside process (i.e. not through a page's code-behind)?

I've got my first batch of really massive data that I need for my ASP.NET web application. Up until now (for two years in fact!) nothing has come up that was so costly that I couldn't just do it on Page_Load or store it in ViewState or Session. …
CptSupermrkt
  • 6,844
  • 12
  • 56
  • 87
0
votes
0 answers

Best Data Caching Strategy for Asp.Net Mvc and SqlServer

Users can do CRUD operations for web application mostly. But the situation is different for my specific web application. Users never do CUD. They can only Retrieve data. So the picture: 1- There is a service updating database frequently (7-8 updates…
Oguz Karadenizli
  • 3,449
  • 6
  • 38
  • 73
-1
votes
1 answer

Monitor Wait for caching,... it this a good practice?

i just wrote a code, and then i found out that there are some issue with the monitor.wait, forcing me to do the operation within the locks, i wanted to now if this is a good way to keep a thread waiting,.... i'm not sure if the thread.join would do…
Hassan Faghihi
  • 1,888
  • 1
  • 37
  • 55
1 2
3