Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (1)

74
votes
3answers
15k views
21
votes
6answers
3k views

Is there a SoftHashMap in Java?

I know there is a WeakHashMap in java.util, but since it uses WeakReferences for everything, which is only referenced by this Map, referenced objects will get lost on the next GC cycle. So it's nearly ...
19
votes
3answers
2k views

Understanding Java's Reference classes: SoftReference, WeakReference, and PhantomReference

Can someone explain the difference between the three Reference classes (or post a link to a nice explanation)? SoftReference > WeakReference > PhantomReference, but when would I use each one? Why is ...
17
votes
11answers
3k views

How do I efficiently cache objects in Java using available RAM?

I need to cache objects in Java using a proportion of whatever RAM is available. I'm aware that others have asked this question, but none of the responses meet my requirements. My requirements are: ...
9
votes
2answers
141 views

Are C# weak references in fact soft?

The basic difference is that weak references are supposed to be claimed on each run of the GC (keep memory footprint low) while soft references ought to be kept in memory until the GC actually ...
9
votes
3answers
343 views

What is a use case for a soft reference in Java?

What is a use case for a soft reference in Java? Would it be useful to garbage collect non-critical items when a JVM has run out of memory in order to free up enough resources to perhaps dump ...
7
votes
10answers
3k views

How to cause soft references to be cleared in Java?

I have a cache which has soft references to the cached objects. I am trying to write a functional test for behavior of classes which use the cache specifically for what happens when the cached objects ...
6
votes
1answer
117 views

Is there a way to FORCE weak and/or soft referenced objects to be GC'd in Java?

Here's my use case. We are trying to narrow down a potential memory leak in an application, and we are using a memory analysis tool to snapshot the heap so we can look for object instances and ...
6
votes
5answers
558 views

Soft (not: weak) references in C++ - Is it possible? Is there an implementation?

In C++ I'm using boost::shared_ptr and boost::weak_ptr to automatically delete objects that are no longer needed. I know these work with reference counting. In Java, memory is managed by a garbage ...
6
votes
8answers
1k 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 ...
5
votes
3answers
450 views

SoftReferences gets GC'd too early

I'm on my way with implementing a caching mechanism for my Android application. I use SoftReference, like many examples I've found. The problem is, when I scroll up or down in my ListView, the most ...
5
votes
5answers
650 views

How to make the java system release Soft References?

I'm going to use a SoftReference-based cache (a pretty simple thing by itself). However, I've came across a problem when writing a test for it. The objective of the test is to check if the cache does ...
4
votes
1answer
269 views

Uses of different reference types in Java

I've recently been playing around with soft, weak and phantom reference types in Java and have been wondering if there's any uses out there for them that I haven't come across. I've used them in the ...
4
votes
4answers
722 views

Gracefully finalizing the SoftReference referent

I am using a search library which advises keeping search handle object open for this can benefit query cache. Over the time I have observed that the cache tends to get bloated (few hundred megs and ...
3
votes
2answers
156 views

What are the “practical consequences” of using soft references?

Per the documentation for Guava's MapMaker.softValues(): Warning: in most circumstances it is better to set a per-cache maximum size instead of using soft references. You should only use this ...
3
votes
4answers
418 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
2answers
708 views

android : SoftReference / WeakReference example

I am getting OutOfMemoryError on my application. When i went through some tutorials, i came to know that, I can solve this issue by using Softreference/Weakreference. But I don't know that how to use ...
2
votes
3answers
149 views

Is there a SoftHashMap in Scala?

I'm aware of this question for java, but none of those implementations seem to play well with scala.collection.JavaConversions. I'm looking for something simple (e.g. single file, not a whole ...
2
votes
3answers
292 views

Is there any way to determine if an object in Java is softly reachable?

In order to perform some testing, I'd like to check how my application behaves when some or all of the objects I have stored in a cache of SoftReference'd objects are disposed of. In order to do ...
1
vote
4answers
84 views

is there a way to recycle a complex java object once the GC has decided it is unreachable

In C++ I use reference counted objects to impplement a for of "auto" recycling object pool SmartPointer<ObjType> object = pool.getObject(); // hold reference // ... do stuff with object over ...
1
vote
2answers
86 views

Java, convert object to softreference

I need to put a data object into my weakhashmap containing softreferences. How do I convert my "Drawable" object into a softreference? WeakHashMap <String, SoftReference<Drawable>> ...
1
vote
3answers
89 views

Java SoftReference, panicing GC and GC behavior

I want to write a cache using SoftReferences using as much memory as possible, as long as it doesn't get too inefficient. Trying to estimate the used size by calculating object sizes or by getting ...
1
vote
2answers
89 views

When a PhantomReference/SoftReference/WeakReference is queued, how do you know what it referred to?

I haven't used PhantomReferences. There seems to be very few good examples of real-world use. When a phantom shows up in your queue, how do you know which object it is/was? The get() method appears ...
1
vote
0answers
341 views

Bitmap Cache (SoftReference, Hard) on Lazy List does not seem to work properly - Android

I have read several topics on lazy list loading in stackoverflow and I am trying to understand how to work on the different cache levels in android. As mentioned here: Android - How do I do a lazy ...
1
vote
1answer
153 views

google-guava MapMaker .softValues() - values don't get GC-ed, OOME: HeapSpace follows

I am having trouble using the MapMaker from google-guava. Here is the code: package test; import java.lang.ref.SoftReference; import java.util.Map; import java.util.Random; import ...
1
vote
2answers
92 views

Mixing different reference types in one collection

SoftReference, WeakReference, PhantomReference may be used to customize the process of garbage collection. All of them extend Reference<T> therefore it is possible to mix them in single ...
1
vote
0answers
902 views

Android: BitmapFactory.decodeStream OutOfMemoryException - is SoftReference the solution?

I'm getting an OutOfMemoryException: E/AndroidRuntime( 3013): java.lang.OutOfMemoryError: bitmap size exceeds VM budget E/AndroidRuntime( 3013): at ...
1
vote
1answer
2k views

Android: Bitmaps, SoftReferences, and OOMs?

I have a series of views in a vertical LinearLayout. Each view generates and draws a Bitmap, when scrolled to. For performance reasons, I would rather not generate the Bitmap each time onDraw() is ...
1
vote
1answer
222 views

Implementing a Write-Back Cache in Java

I trying to implement a write-back cache. I'm trying to use soft referenes, but I'm having troubles performing the post-mortum write-back because the reference is cleared before it's added to the ...
1
vote
2answers
801 views

Android: the GC doesn't respect SoftReferences?

It seams that Dalvik's garbage collector doesn't respect SoftReferences and removes them as soon as possible, just like WeakReferences. I'm not 100% sure yet, but despite the fact that there is still ...
1
vote
1answer
97 views

Does .NET have soft references? [closed]

Possible Duplicate: Why doesn't .NET have a SoftReference as well as a WeakReference, like Java? Java has several types of references, two of these are Weak and Soft. I know that .NET ...
1
vote
2answers
167 views

Testing code that uses SoftReference<T>

To get any code with SoftReference<T> to be fully tested, one must come up with some way to test the 'yup, it's been nulled' case. One might more or less mock this by using a 'for-test' code ...
0
votes
1answer
56 views

Where Weak and Soft references are used in JEE programming

I am JEE developer but I don't know where in day to day programming one might use Weak or Soft references.
0
votes
1answer
207 views

Using SoftReference to cache Bitmap on Android cause OOM

I'm developing an application that need to load Bitmap. And using a SoftReference for the cache. I relate every soft reference with a ReferenceQueue and using a hash map to access the SoftReference . ...
0
votes
2answers
254 views

Android image caching - hard and soft HashMaps question

What I'm trying to do right now within my app is modify the ImageDownloader class that Google put out last year in one of their tutorials that asynchronously downloads and caches images for ImageViews ...
0
votes
1answer
515 views

Android OutOfMemoryException on createScaledBitmap and the role of SoftReferences?

I got an OOM. I know it has been covered alot by previous questions but mine has to do with the internals of Android and Java in general. As I am loading images at random points I get this dreaded ...
0
votes
1answer
145 views

collection.immutable.Map[ K, SoftReference[ V ]] over google's MapMaker?

Assume a potentially multi-threaded environment. I want to use a map along with (value) caching. Why would I prefer one of collection.immutable.Map.empty[ K, SoftReference[ V ]] new ...
0
votes
2answers
238 views

Is This correct way to use Soft References

I created a cache using Soft References a while ago, but in trying to resolve a bug I'm getting concerned that actually I've done it incorrectly and it's removing objects when it shouldn't. This is ...
0
votes
2answers
207 views

Will GC collect an object referred to by a SoftReference and a WeakReference?

I have a cache built from a Map to SoftReferences. When they are added they get put into another queue to be lazily compressed down via gzip or some such. My idea is this: I want to have ...
0
votes
3answers
448 views

Java: any problems/negative sides of keeping SoftReference to ArrayList in HttpSession?

My code is doing the following (just as an example, and the reason that I specify package path to java.lang.ref.SoftReference is to note that it's not my own implementaiton :-): ... ...
0
votes
3answers
2k views

Soft reference LinkedHashMap in Java?

Is there softreference-based LinkedHashMap in Java? If no, has anyone got a snippet of code that I can probably reuse? I promise to reference it correctly. Thanks.