The soft-references tag has no wiki summary.
-1
votes
3answers
39 views
Map Size incorrect in Java.If i wrap Key and Value in WeakReference and then add into HashMap, printed size is different than expected
If i don't comment line 1 and comment line 2 ,line 1 causes outOfMemory Error.If i do the reverse it does not causes outOfMemory because Key,Value are wrapped in WeakReference. But i can't understand ...
0
votes
0answers
24 views
Write SoftReference referent to disk before GC
I have an ArrayList whose elements will fit in memory for 99% of datasets it uses. Some datasets, though, won't fit in memory and I would like to write the elements of the list to disk. I don't want ...
0
votes
1answer
137 views
How to use Soft/WeakReference classes in a Android App?
I'm maintaining a big app with a huge number of images. My main problem is the app crashes when I use it because it produces out memory error. I'm trying to use SoftReferences and WeakReferences, I've ...
1
vote
2answers
236 views
Using Java's ReferenceQueue
Do SoftReference and WeakReference realy only help when created as instance variables? Is there any benefit to using them in method scope?
The other big part is ReferenceQueue. Besides being able ...
2
votes
2answers
113 views
When using weak or soft reference with a ReferenceQueue when is the object really removed from memory?
When using weak or soft reference with a ReferenceQueue when is the object really removed from memory? Do I have to call referancequeue.remove or referancequeue.poll() methods?
Example:
...
2
votes
3answers
133 views
A cache which knows about reachability
I'd like a cache with some maximum retaining capacity of N. I'm allowing it to hold up to N objects which would otherwise be eligible for GC. Now, if my application itself currently holds N+1 strong ...
4
votes
5answers
326 views
When to use Weak and Phantom references in Java
I read many articles, but I don't understand - where do I need to use Weak and Phantom references in practice? Soft references - is a good choice for cache, as I understand. But weak and phantom, I ...
1
vote
1answer
175 views
Soft References for Android 2.3+
I have an app that loads a lot of bitmaps to form one large one.
I use soft references to allow these bitmaps to be stored appropriately. You are able to scroll over them with no problem on android ...
3
votes
3answers
112 views
What will GC do if there is a two level soft referenced object
I know in Java we have concept of soft reference. What if:
1) There is a soft reference "sf" refer to an object A
2) In object A, it has a strong reference refers to object B
3) object A & B ...
0
votes
2answers
324 views
Advise for performance when using custom Adapter and SoftReference in Android
I implemented a custom Adapter to create a dialog box that displays info related with locations (each entry of the dialogue consists of an image, a text field to display the address and a text field ...
13
votes
5answers
435 views
How are SoftReferences collected by JVMs in practice?
I have two separate caches running in a JVM (one controlled by a third party library) each using soft references. I would prefer for the JVM to clear out my controlled cache before the one controlled ...
11
votes
3answers
3k views
Java: different between strong/soft/weak reference
I have read some document about this. but I don't really understand it. Please give me some advice, and please give me some example to describe ( I think this is the one that I need to understand)
...
2
votes
4answers
292 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 ...
2
votes
2answers
203 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>> ...
0
votes
1answer
156 views
Where Weak and Soft references are used in Java EE programming
I am Java EE developer but I don't know where in day to day programming
one might use Weak or Soft references.
1
vote
1answer
3k 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 . ...
1
vote
3answers
220 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 ...
10
votes
3answers
574 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 ...
1
vote
2answers
424 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 ...
4
votes
1answer
2k 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 ...
0
votes
2answers
728 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 ...
8
votes
1answer
441 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 ...
1
vote
1answer
303 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 ...
4
votes
2answers
346 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 ...
1
vote
3answers
4k 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 ...
1
vote
2answers
238 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 ...
0
votes
2answers
1k 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 ...
8
votes
4answers
1k views
SoftReference gets garbage collected 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 ...
0
votes
1answer
224 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 ...
4
votes
4answers
288 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 ...
1
vote
1answer
1k 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 ...
4
votes
1answer
595 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
1answer
4k 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 ...
0
votes
2answers
434 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 ...
2
votes
1answer
433 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 ...
8
votes
2answers
1k 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
3answers
276 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 ...
1
vote
1answer
155 views
Does .NET have soft references? [duplicate]
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 ...
9
votes
5answers
2k 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 ...
35
votes
3answers
5k 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 ...
6
votes
5answers
933 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 ...
3
votes
2answers
265 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 ...
1
vote
3answers
672 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 :-):
...
...
12
votes
4answers
561 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 ...
21
votes
12answers
6k 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:
...
4
votes
4answers
1k 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 ...
2
votes
3answers
409 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 ...
2
votes
4answers
3k 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.
4
votes
5answers
686 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 ...
13
votes
10answers
5k 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 ...
