The memorycache tag has no wiki summary.
8
votes
2answers
725 views
MemoryCache Strangeness
I’m using the inbuilt MemoryCache in .net 4.0 in an app and trying to set the maximum size for the cache.
The MSDN documentation says that
CacheMemoryLimitMegabytes and ...
6
votes
6answers
245 views
C volatile variables and Cache Memory
Cache is controlled by cache hardware transparently to processor, so if we use volatile variables in C program, how is it guaranteed that my program reads data each time from the actual memory address ...
4
votes
3answers
208 views
When to use a virtual attribute or pass data in a hash in Rails 3
In my application, I have a Widget model, a Feature model with a has_many through association by WidgetFeature table.
As per the requirements, when I am sending a WidgetFeature object, I should ...
3
votes
2answers
132 views
Simulating background task on AppHarbor
I'm using System.Runtime.Caching.MemoryCache to simulate a repeated task on a running .NET MVC application deployed on AppHarbor.
Entries in the cache are added using a CacheItemPolicy which contains ...
1
vote
1answer
47 views
MemoryCache with regions support?
I need to add cache functionality and found a new shiny class called MemoryCache. However, I find MemoryCache a little bit crippled as it is (I'm in need of regions functionality). Among other things ...
1
vote
1answer
43 views
What's the difference between MemoryCache.Add and MemoryCache.Set?
I read the MSDN but didn't really understand it.
I believe the "Set" == "Remove" + "Add" || "Add" if not Exists (Atomically)
It that correct ?
1
vote
1answer
81 views
Difference between “memory cache” and “memory pool”
By reading "understanding linux network internals" and "understanding linux kernel" the two books as well as other references, I am quite confused and need some clarifications about the "memory cache" ...
1
vote
1answer
173 views
Pre .NET 4 memory cache
I want to use the new MemoryCache class but I am not yet using .NET 4. I do have a simple cache class (internally uses a dictionary). What would be a good approach in using this class like the ...
1
vote
1answer
317 views
MemoryCache.Default remove using LINQ
Is there a way i can remove objects from MemoryCache.Default using LINQ query like this:
MemoryCache.Default.Select(c => c.Value).OfType<CachedObjectType>().ToList().RemoveAll(k => ...
0
votes
1answer
130 views
.Net 4 Memory Cache class and user Session
The new class MemoryCache in .Net 4.0 appears to act just like asp.net caching. My questions are:
Is MemoryCache equivalent to storing an object/value in for a user in Session Cache, but not in the ...
0
votes
1answer
55 views
MemoryCache item remove callback and exiting gracefully
After storing items in a MemoryCache, I need to do some cleanup when they get removed. I have set a removed item callback and that works great. My question is, if the app exits abnormally such as from ...
0
votes
0answers
203 views
C# 4.0 MemoryCache - how to evict dependent cache entries when changes are made to their dependencies
I am attempting to evict entries from a MemoryCache when changes are made to other entries on which they are dependent. This is being set up by creating cache entry change monitors for the ...
0
votes
2answers
263 views
Is MemoryCache.Set() thread-safe?
The MSDN documentation for MemoryCache.Set unfortunately doesn’t state explicitly whether it is thread-safe or not.
Is it safe to use .Get() and .Set() from several threads without an explicit lock?
0
votes
1answer
111 views
System.Runtime.Caching returns wrong count when using OfType<T>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Runtime.Caching;
namespace ConsoleApplication4
{
class Program
{
static void ...