5
votes
7answers
532 views
Why doesn’t .NET have a SoftReference as well as a WeakReference, like Java?
I really love WeakReference's. But I wish there was a way to tell the CLR how much (say, on a scale of 1 to 5) how weak you consider the reference to be. That would be brilliant.
Java has …
4
votes
2answers
126 views
Why doesn’t the weakref work on this bound method?
I have a project where i'm trying to use weakrefs with callbacks, and I don't understand what I'm doing wrong. I have created simplified test that shows the exact behavior i'm confused with.
Why is …
3
votes
4answers
158 views
Equivalent to SoftReference in .net?
I am familiar with WeakReference, but I am looking for a reference type that is cleared only when memory is low, not simply every time when the gc runs (just like Java's SoftReference). I'm looking …
2
votes
3answers
353 views
Does WeakReference make a good cache?
Hi,
i have a cache that uses WeakReferences to the cached objects to make them automatically removed from the cache in case of memory pressure. My problem is that the cached objects are collected …
1
vote
2answers
36 views
Does WeakReference have redundant properties?
WeakReference implementation in .NET has an IsAlive Property.
1) Are there any performance/behavior differences between using the IsAlive property or testing whether the Target property is not null?
…
1
vote
2answers
72 views
Does WeakReference work with String?
In .NET 3.5, Does WeakReference work with String or shall I wrap it in a small "class" to make it work with it?
1
vote
6answers
347 views
ThreadLocal Resource Leak and WeakReference
My limited understanding of ThreadLocal is that it has resource leak issues. I gather this problem can be remedied through proper use of WeakReferences with ThreadLocal (although I may have …
0
votes
2answers
164 views
Python weakref callbacks and __del__ execution order
In Python, is there a way to call a function after an object is finalized?
I thought the callback in a weakref would do it, but it appears a weakref's callback is called once the object is garbage …
0
votes
2answers
143 views
Does this Caching function work how I think it does?
I've tentatively written this method:
public static Func<T> WeakCacheFor<T>( Func<T> provider ) where T: class
{
var cache = new WeakReference(null);
return () => {
…
0
votes
4answers
192 views
Lambda Expression cause weakreference’s target cannot be GC?
namespace Test
{
class Test
{
delegate void HandleMessage(string message);
public void handleMessage(string message){}
static void Main(string[] args)
{
HandleMessage …
