User kohlerm - Stack Overflowmost recent 30 from stackoverflow.com2009-12-12T06:21:51Zhttp://stackoverflow.com/feeds/user/26056http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/888348/jgoodies-memory-leak-out-of-memory-exception-when-spring-tries-to-display-the/890608#8906081Answer by kohlerm for JGoodies memory leak?? - Out of Memory Exception when Spring tries to display the viewkohlerm2009-05-20T22:42:25Z2009-05-20T22:42:25Z<p>turn on -XX:+HeapDumpOnOutOfMemoryError (assuming you have a SUN JVM) and load the heap dump into the <a href="http://www.eclipse.org/mat/" rel="nofollow">Eclipse Memory Analyzer</a>. It should be easy to find out what is needing too much memory. </p>
http://stackoverflow.com/questions/863948/automated-way-to-find-junit-tests-that-leak-memory/868176#8681760Answer by kohlerm for Automated way to find JUnit tests that leak memorykohlerm2009-05-15T11:37:47Z2009-05-15T11:37:47Z<p>You could use the <a href="http://www.eclipse.org/mat/" rel="nofollow">Eclipse Memory Analyzer</a> to automate analyzing heap dumps taken after each test or probably better after all tests. MAT can find memory leaks fairly automatically.
Regards,
<a href="http://kohlerm.blogspot.com/" rel="nofollow">Markus</a></p>
http://stackoverflow.com/questions/863198/controllable-memory-swapping-in-java/864122#8641220Answer by kohlerm for controllable memory swapping in Java?kohlerm2009-05-14T15:43:43Z2009-05-14T15:43:43Z<p>There are ways in some operating systems to stop processes from swapping.
But you really shouldn not store passwords for a longer time in memory. It's just not safe.</p>
http://stackoverflow.com/questions/859604/how-to-get-the-memory-address-of-the-java-heap/862486#8624860Answer by kohlerm for How to get the memory address of the Java heap?kohlerm2009-05-14T09:50:00Z2009-05-14T09:50:00Z<p>I don't think that there's a way do to what you want, without using a customized JVM. You could theoretically use OpenJDK and patch it or enable some tracing (not sure whether there's one that fits your needs). I think n external monitoring tool such as <a href="http://technet.microsoft.com/de-de/sysinternals/bb896653.aspx" rel="nofollow">the process explorer</a> could solve your problem</p>
http://stackoverflow.com/questions/838672/finding-equal-subgraphs0Finding equal subgraphskohlerm2009-05-08T07:49:16Z2009-05-11T11:38:21Z
<p>Given:</p>
<ul>
<li>a directed Graph</li>
<li>Nodes have labels</li>
<li>the same label can appear more than once</li>
<li>edges don't have labels</li>
</ul>
<p>I want to find the set of largest (connected) subgraphs which are equal taking the labels of the nodes into account. </p>
<p>The graph could be huge (millions of nodes) does anyone know an efficient solution for this?</p>
<p>I'm looking for algorithm and ideally a Java implementation.</p>
<p>Update: Since this problem is most likely NP-complete. I would also be interested in an algorithm that produces an approximated solution. </p>
<p>This seems to be close at least:
<a href="http://www.borgelt.net/papers/mlg%5F07.pdf" rel="nofollow">Frequent Subgraphs</a></p>
http://stackoverflow.com/questions/839230/memory-usage-of-filechannelmap/840103#8401030Answer by kohlerm for Memory usage of FileChannel#mapkohlerm2009-05-08T14:37:41Z2009-05-08T14:37:41Z<p>Yes. It's not part of the heap. Still, depending on the OS there will still be memory reserved. On OS X, because it's UNIX-like you should be able to use top or ps to check how much memory it needs. </p>
http://stackoverflow.com/questions/818442/how-to-troubleshoot-an-unresponsive-java-app-process-in-linux/820653#8206530Answer by kohlerm for How to troubleshoot an unresponsive java app/process in linuxkohlerm2009-05-04T15:47:00Z2009-05-04T15:47:00Z<p>I agree with others that Thread dumps are the way to go.
I would like to add that you should get lot's of thread dumps.
You can do very simple profiling with just a few unix commands.
Check my post <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/4425" rel="nofollow">here</a></p>
http://stackoverflow.com/questions/532521/which-data-structure-uses-more-memory/801353#8013530Answer by kohlerm for Which data structure uses more memory? kohlerm2009-04-29T08:04:02Z2009-04-29T08:04:02Z<p>As others have pointed out, your question is underspecified. </p>
<p>Still, sometimes an ArrayList based implementation can replace a HashMap based implementation (I would not consider Hashtable at all, it's obsolete). You might need to search the ArrayList linearly but for small Lists that might still be fast enough and the ArrayList will need less memory (for the same data), because it has less overhead.</p>
http://stackoverflow.com/questions/789132/how-do-you-make-your-java-application-memory-efficient/789749#7897494Answer by kohlerm for How do you make your Java application memory efficient?kohlerm2009-04-25T21:20:17Z2009-04-25T21:20:17Z<p>Normal "profilers" won't help you much, because you need an overview of all your "live" objects. You need heap dump analyzer. I recommend the <a href="http://www.eclipse.org/mat/" rel="nofollow">Eclipse Memory analyzer</a>. </p>
<p>Check for duplicated objects, starting with Strings.
Check whether you can apply patterns like flightweight, copyonwrite, lazy initialization (google will be your friend). </p>
http://stackoverflow.com/questions/756873/best-way-to-profile-memory-usage-in-a-java-application/756947#7569472Answer by kohlerm for Best way to profile memory usage in a Java application?kohlerm2009-04-16T16:31:38Z2009-04-16T16:31:38Z<p>Several profiler's such as <a href="http://yourkit.com/" rel="nofollow">yourkit</a> have API's for tracing memory allocations. Another option here are monitoring tools such as <a href="http://www.jinspired.com/products/jxinsight/" rel="nofollow">jxinsight</a>
or <a href="http://www.glassbox.com/glassbox/Home.html" rel="nofollow">glassbox</a> or <a href="http://jamonapi.sourceforge.net/" rel="nofollow">jamon</a></p>
<p>For analyzing heap dumps the<a href="http://www.eclipse.org/mat/" rel="nofollow">Eclipse Memory Analyzer</a> is the best tool you can get. It's free and open source, so you can automate the analysis of heap dumps as much as you want. </p>
http://stackoverflow.com/questions/748940/does-the-sun-jvm-slow-down-when-more-memory-is-allocated-via-xmx/750644#7506440Answer by kohlerm for Does the Sun JVM slow down when more memory is allocated via -Xmx?kohlerm2009-04-15T07:27:01Z2009-04-15T07:27:01Z<p>It typically will not help your peformance/throughput,if you increase -Xmx.
Theoretically there could be longer "stop the world" phases but in practice with the CMS that's not a real problem. </p>
<p>Of course you should not set -Xmx to some insane value like 300Gbyte unless you really need it :) </p>
http://stackoverflow.com/questions/712187/troubleshooting-grails-groovy-memory-leaks/712994#7129941Answer by kohlerm for Troubleshooting Grails/Groovy memory leaks?kohlerm2009-04-03T08:14:33Z2009-04-03T08:14:33Z<p><a href="http://www.eclipse.org/mat/" rel="nofollow">Eclipse Memory Analyzer</a> is a free tool that is at least as good as Yourkit. </p>
http://stackoverflow.com/questions/706238/entitymanager-causing-memory-leak/706346#7063460Answer by kohlerm for Entitymanager causing memory leak?kohlerm2009-04-01T16:29:27Z2009-04-01T16:29:27Z<p>Check whether it's really a <a href="http://www.dzone.com/links/how%5Fto%5Ffix%5Fmemory%5Fleaks%5Fin%5Fjava.html" rel="nofollow">leak</a></p>
<p>if so get <a href="http://www.eclipse.org/mat/" rel="nofollow">the Eclipse Memory Analyzer </a>and analyze it. </p>
<p>The blog posts <a href="http://kohlerm.blogspot.com/search/label/memory" rel="nofollow">here</a> might also be useful. </p>
http://stackoverflow.com/questions/690805/any-java-caches-that-can-limit-memory-usage-of-in-memory-cache-not-just-instance/696383#6963830Answer by kohlerm for Any Java caches that can limit memory usage of in-memory cache, not just instance count?kohlerm2009-03-30T08:16:06Z2009-03-30T08:16:06Z<p>It's possible to define a meaningful measure for the memory usage of a cache. You could compute the : <a href="http://kohlerm.blogspot.com/2009/02/how-to-really-measure-memory-usage-of.html" rel="nofollow">"retained size"</a>.
Unfortunately computing the retained size is roughly as costly as a full GC, and it's therefore probably not an option. In certain JVM languages (clojure?) you could theoretically make sure that no objects in the cache would be referenced from outside objects and then you could monitor the real size of the cache. </p>
http://stackoverflow.com/questions/655651/example-of-a-comet-implementation-in-flex0Example of a Comet implementation in Flexkohlerm2009-03-17T19:18:37Z2009-03-17T19:37:06Z
<p>I'm looking for an example of how to do a long running HTTP call from Flex/Actionscript to a Java server that supports Comet. Also long running http calls are usually used for pushing data from the server to the client, I would like to used for "streaming" data to the client, for example data for a large table. The client should show already some data before the call is finished. I know that LCDS from Adobe supports this, but I'm interested in a low level implementation that would get the data directly using HTTP. </p>
http://stackoverflow.com/questions/605226/boolean-vs-bitset-which-is-more-efficient/606790#6067901Answer by kohlerm for Boolean[] vs. BitSet: Which is more efficient?kohlerm2009-03-03T15:16:04Z2009-03-03T15:16:04Z<p>It depends as always.
Yes BitSet is more memory efficent, but as soon as you require multithreaded access boolean[] might be the better choice. For example for computing primes you only set the boolean to true and therefore you don't really need synchronization. <a href="http://www.hpl.hp.com/personal/Hans%5FBoehm/" rel="nofollow">Hans Boehm</a> has written some paper about this and the same technique can be used for marking nodes in graph. </p>
http://stackoverflow.com/questions/249720/efficient-way-to-recursively-calculate-dominator-tree/560522#5605220Answer by kohlerm for Efficient way to recursively calculate dominator tree?kohlerm2009-02-18T10:27:55Z2009-02-18T10:27:55Z<p>I do not fully understand your question, but it seems to me you want to have some incremental update feature. I researched a while ago what algorithms are their but it seemed to me that there's no known way for large graphs to do this quickly (at least from a theoretical standpoint). </p>
<p>You may just search for "incremental updates dominator tree" to find some references. </p>
<p>I guess you are aware <a href="http://www.eclipse.org/mat/" rel="nofollow">the Eclipse Memory Analyzer</a> does use dominator trees, so this topic is not completely "owned" by the compiler community anymore :)</p>
http://stackoverflow.com/questions/541832/know-of-any-java-garbage-collection-log-analysis-tools/545550#5455503Answer by kohlerm for Know of any Java garbage collection log analysis tools?kohlerm2009-02-13T10:58:18Z2009-02-13T10:58:18Z<p><a href="http://www.tagtraum.com/gcviewer.html" rel="nofollow">gcviewer</a> does what you want.</p>
http://stackoverflow.com/questions/470683/memory-allocation-deallocation-bottleneck/472451#4724512Answer by kohlerm for Memory Allocation/Deallocation Bottleneck?kohlerm2009-01-23T10:21:17Z2009-01-23T10:21:17Z<p>In Java (and potentially other languages with a decent GC implementation) allocating an object is very cheap. In the SUN JVM it only needs 10 CPU Cycles. A malloc in C/c++ is much more expensive, just because it has to do more work. </p>
<p>Still even allocation objects in Java is very cheap, doing so for a lot of users of a web application in parallel can still lead to performance problems, because more Garbage Collector runs will be triggered.
Therefore there are those indirect costs of an allocation in Java caused by the deallocation done by the GC. These costs are difficult to quantify because they depend very much on your setup (how much memory do you have) and your application. </p>
<p>Regards,
Markus (<a href="http://kohlerm.blogspot.com/" rel="nofollow">http://kohlerm.blogspot.com/</a>)</p>
http://stackoverflow.com/questions/470820/why-do-pages-get-slower-as-memory-usage-increases-in-internet-explorer/472437#4724371Answer by kohlerm for Why do pages get slower as memory usage increases in Internet Explorerkohlerm2009-01-23T10:13:52Z2009-01-23T10:13:52Z<p>Even without swapping,that's caused by the "stupid" implementation of the Garbage Collector for Javascript in IE. It uses some heuristics that call the GC more often, if there are more objects. </p>
<p>There's not way you can avoid this, other than avoiding memory leaks like hell and also avoid creating too many Javascript objects. </p>
<p>Regards,
Markus (<a href="http://kohlerm.blogspot.com/" rel="nofollow">http://kohlerm.blogspot.com/</a>)</p>
http://stackoverflow.com/questions/461896/what-is-the-most-frequent-concurrency-problem-youve-encountered-in-java/461913#4619132Answer by kohlerm for What is the most frequent concurrency problem you've encountered in Java?kohlerm2009-01-20T16:03:01Z2009-01-20T16:03:01Z<p>Use of a global object such as a static variable for locking. </p>
<p>This leads to very bad performance because of contention. </p>
http://stackoverflow.com/questions/324633/why-doesnt-net-have-a-softreference-as-well-as-a-weakreference-like-java/458234#4582340Answer by kohlerm for Why doesn't .NET have a SoftReference as well as a WeakReference, like Java?kohlerm2009-01-19T16:37:18Z2009-01-19T16:37:18Z<p>Don't know why .NET does not have Softreferences.
BUT in Java Softreferences are IMHO overused. The reason is tha at least in an application server you would want to be able to influence per application how long your Softreferenzen live. That's currently not possible in Java. </p>
http://stackoverflow.com/questions/457229/how-to-cause-soft-references-to-be-cleared-in-java/458224#4582240Answer by kohlerm for How to cause soft references to be cleared in Java?kohlerm2009-01-19T16:35:12Z2009-01-19T16:35:12Z<p>In a typical JVM implementation (SUN) you need to trigger a Full GC more than once to get the Softreferences cleaned. The reason for that is because Softreferences require the GC to do more work, because for example of a mechanism that allows you to get notified when the objects are reclaimed. </p>
<p>IMHO using a lot of sofreferences in an application server is evil, because the developer has not much control over when they are released. </p>
http://stackoverflow.com/questions/432922/significant-new-inventions-in-computing-since-1980/435670#4356702Answer by kohlerm for Significant new inventions in computing since 1980kohlerm2009-01-12T15:00:34Z2009-01-12T15:00:34Z<p><a href="http://www.eclipse.org/" rel="nofollow">The Eclipse IDE</a></p>
<p>Bringing an Smalltalk like IDE to the masses ;)</p>
http://stackoverflow.com/questions/432922/significant-new-inventions-in-computing-since-1980/435644#4356440Answer by kohlerm for Significant new inventions in computing since 1980kohlerm2009-01-12T14:52:45Z2009-01-12T14:52:45Z<p><a href="http://www.eclipse.org/mat/" rel="nofollow">The Eclipse memory Analyzer</a>:</p>
<p>and it's of use of the <a href="http://www.cl.cam.ac.uk/~mr10/lengtarj.pdf" rel="nofollow">Lengauer-Tarjan dominator tree algorithm</a> for memory usage analysis. </p>
http://stackoverflow.com/questions/362500/updating-from-java-1-4-2-to-java-6-both-sun-vms-results-in-slower-performance/363022#3630221Answer by kohlerm for Updating from Java 1.4.2 to Java 6 (both Sun VMs) results in slower performancekohlerm2008-12-12T15:07:46Z2008-12-12T15:07:46Z<p>Theoretically it could be that you application consumes more memory, because there were changes to the way Strings share their internal char[]. Less sharing is done after 1.4.
Check my old blog at <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/5100" rel="nofollow">http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/5100</a> (new blog is <a href="http://kohlerm.blogspot.com/" rel="nofollow">here</a>)</p>
<p>I would compare the Garbage Collector logs to see whether memory usage is really the problem. </p>
<p>If that doesn't help, us a profiler such as Yourkit to find the differences. </p>
http://stackoverflow.com/questions/353371/does-the-xxheapdumponoutofmemoryerror-option-work-with-oracle-application-serv/355488#3554880Answer by kohlerm for Does the -XX:+HeapDumpOnOutOfMemoryError option work with Oracle Application Server?kohlerm2008-12-10T09:14:52Z2008-12-10T09:14:52Z<p>This option is specific to SUN/SAP/HP JVM's, and I doubt it would work if you use the JRockit VM. JRockit might also not support the hprof format at all, because it's not required by the Java spec. </p>
<p>You may want to check <a href="http://www.yourkit.com/faq/index.jsp#jrockit" rel="nofollow">Yourkit</a> which is the only tool I'm aware of that comes close to the <a href="http://www.eclipse.org/mat" rel="nofollow">Eclipse Memory Analyzer</a> for <a href="http://kohlerm.blogspot.com/search/label/memory" rel="nofollow">memory usage analysis</a>. It seems to support JRockit. </p>
http://stackoverflow.com/questions/354703/is-there-a-workaround-for-javas-poor-performance-on-walking-huge-directories/355448#3554481Answer by kohlerm for Is there a workaround for Java's poor performance on walking huge directories?kohlerm2008-12-10T08:49:35Z2008-12-10T08:49:35Z<p>I doubt the problem is relate to the bug report you referenced.
The issue there is "only" memory usage, but not necessarily speed.
If you have enough memory the bug is not relevant for your problem. </p>
<p>You should measure whether your problem is memory related or not. Turn on your Garbage Collector log and use for example <a href="http://www.tagtraum.com/gcviewer.html" rel="nofollow">gcviewer</a> to analyze your memory usage.</p>
<p>I suspect that it has to do with the SMB protocol causing the problem.
You can try to write a test in another language and see if it's faster, or you can try to get the list of filenames through some other method, such as described here in another post. </p>
http://stackoverflow.com/questions/343929/java-performance-with-very-large-amounts-of-ram/344066#3440664Answer by kohlerm for Java performance with very large amounts of RAMkohlerm2008-12-05T15:01:21Z2008-12-05T15:01:21Z<p>On the Sun JVM, you can use the option -XX:UseConcMarkSweepGC to turn on the Concurrent mark and sweep Collector, which will avoid the "stop the world" phases of the default GC algorithm almost completely, at the cost of a little bit more overhead. </p>
<p>The advise to use more than on VM on such a machine is IMHO outdated.
In real world applications you often have enough shared data so that the performance with the CMS and one JVM is better.</p>
http://stackoverflow.com/questions/342151/java-file-i-o-performance-decreases-over-time/344054#3440540Answer by kohlerm for Java File I/O Performance Decreases Over Timekohlerm2008-12-05T14:55:39Z2008-12-05T14:55:39Z<p>Check
static void read3() throws IOException {</p>
<pre><code> // read from the file with buffering
// and with direct access to the buffer
MyTimer mt = new MyTimer();
FileInputStream fis =
new FileInputStream(TESTFILE);
cnt3 = 0;
final int BUFSIZE = 1024;
byte buf[] = new byte[BUFSIZE];
int len;
while ((len = fis.read(buf)) != -1) {
for (int i = 0; i < len; i++) {
if (buf[i] == 'A') {
cnt3++;
}
}
}
fis.close();
System.out.println("read3 time = "
+ mt.getElapsed());
}
</code></pre>
<p>from <a href="http://java.sun.com/developer/JDCTechTips/2002/tt0305.html" rel="nofollow">http://java.sun.com/developer/JDCTechTips/2002/tt0305.html</a></p>
<p>The best buffer size might depend on the operating system.
Yours is maybe to0 small. </p>
http://stackoverflow.com/questions/1810623/what-and-how-much-overheads-happen-when-i-use-a-reference-class/1810832#1810832Comment by kohlerm on What and how much overheads happen when I use a Reference class?kohlerm2009-12-01T14:48:29Z2009-12-01T14:48:29ZSoftreferences can show up. The are reclaimed relatively late and if you have many of them you can run into severe performance problems because they require more than one GC run to be reclaimed.http://stackoverflow.com/questions/470683/memory-allocation-deallocation-bottleneck/472451#472451Comment by kohlerm on Memory Allocation/Deallocation Bottleneck?kohlerm2009-07-09T08:47:47Z2009-07-09T08:47:47Zwell the reason is that the SUN JVM (up to now) uses a copying allocator for the new space. there's a to and a from space and one of them is always completely empty.
http://stackoverflow.com/questions/924597/am-i-correctly-interning-my-strings/924621#924621Comment by kohlerm on Am I correctly interning my Strings ?kohlerm2009-05-31T22:09:08Z2009-05-31T22:09:08ZInterned Strings are reclaimed. The are on SUN JVM stored in permspace, which means they require a Full GC to be reclaimedhttp://stackoverflow.com/questions/924597/am-i-correctly-interning-my-strings/924608#924608Comment by kohlerm on Am I correctly interning my Strings ?kohlerm2009-05-31T22:07:17Z2009-05-31T22:07:17Zguys, String duplicates are the norm (not sure whether that was the original question. Jacques was so kind to already post a link to my blog. You can find examples of high number of String duplicates in popular applications such as Netbeans and Eclipse.
String.intern() can be useful to avoid duplicates. There are are possible solutions, but they are usually less memory efficienthttp://stackoverflow.com/questions/625420/what-is-the-fastest-way-to-read-a-large-number-of-small-files-into-memory/625505#625505Comment by kohlerm on What is the fastest way to read a large number of small files into memory ?kohlerm2009-05-11T07:15:36Z2009-05-11T07:15:36Zusing String.replaceAll() is definitely not a good idea. It will not replace Strings inp lace, but allocate new Strings. http://stackoverflow.com/questions/625420/what-is-the-fastest-way-to-read-a-large-number-of-small-files-into-memory/625810#625810Comment by kohlerm on What is the fastest way to read a large number of small files into memory ?kohlerm2009-05-11T07:14:01Z2009-05-11T07:14:01Zas you said. Memory mapping might take long on some OS's. So for small files it's probaly not a good ideahttp://stackoverflow.com/questions/838672/finding-equal-subgraphsComment by kohlerm on Finding equal subgraphskohlerm2009-05-11T07:08:53Z2009-05-11T07:08:53ZYes I think that's it. I want to find "redundant" subgraphs. At the end the graph would be partitionied into sets of "equal" subgraphs. http://stackoverflow.com/questions/838672/finding-equal-subgraphs/841394#841394Comment by kohlerm on Finding equal subgraphskohlerm2009-05-09T21:53:06Z2009-05-09T21:53:06Zgood point, didn't see the relation to graph isomorphism. But yes the number of identical labels should be relatively small. http://stackoverflow.com/questions/711140/why-isnt-smalltalk-popular/711204#711204Comment by kohlerm on Why isn't Smalltalk popular?kohlerm2009-04-03T08:01:08Z2009-04-03T08:01:08ZI have been working on one of the largest Smalltalk projects in Europe in the more than 10 years ago, so I should know something about it ;) And yes those zealots are mostly right. I'm sure you would understand it after trying Smalltalk. That does not mean their behaviour was smart. http://stackoverflow.com/questions/690805/any-java-caches-that-can-limit-memory-usage-of-in-memory-cache-not-just-instance/695666#695666Comment by kohlerm on Any Java caches that can limit memory usage of in-memory cache, not just instance count?kohlerm2009-03-31T06:54:27Z2009-03-31T06:54:27ZYes, If you have a single user desktop application that might work. But on an app server you could end up with several applications competing for the available memory and you cannot control how much each gets.http://stackoverflow.com/questions/690805/any-java-caches-that-can-limit-memory-usage-of-in-memory-cache-not-just-instance/695666#695666Comment by kohlerm on Any Java caches that can limit memory usage of in-memory cache, not just instance count?kohlerm2009-03-30T19:39:48Z2009-03-30T19:39:48Zthe point is that the live time of Softreferences only depends on the free memory of the app server. You cannot control it independently per application.
http://stackoverflow.com/questions/690805/any-java-caches-that-can-limit-memory-usage-of-in-memory-cache-not-just-instance/695666#695666Comment by kohlerm on Any Java caches that can limit memory usage of in-memory cache, not just instance count?kohlerm2009-03-30T18:39:00Z2009-03-30T18:39:00ZIt's not really a good idea to use Softrefernces for cache implementations. At least not in an app server. The reason is that you cannot really control very well how long they live. http://stackoverflow.com/questions/690805/any-java-caches-that-can-limit-memory-usage-of-in-memory-cache-not-just-instance/696383#696383Comment by kohlerm on Any Java caches that can limit memory usage of in-memory cache, not just instance count?kohlerm2009-03-30T18:37:16Z2009-03-30T18:37:16ZHi Jon,
You just need to compute the "retained set" for the whole cache. You simulate that the cache "root" object (assume for now it's one), could be removed from memory, you run a simulated full GC and then you count which objects would be reclaimed. http://stackoverflow.com/questions/690805/any-java-caches-that-can-limit-memory-usage-of-in-memory-cache-not-just-instance/690833#690833Comment by kohlerm on Any Java caches that can limit memory usage of in-memory cache, not just instance count?kohlerm2009-03-30T08:17:54Z2009-03-30T08:17:54ZHi Jon,
Your comment makes sense overall, but there's a meaningful way to compute the size of the cache (retained size). See my answer below. http://stackoverflow.com/questions/343929/java-performance-with-very-large-amounts-of-ram/344066#344066Comment by kohlerm on Java performance with very large amounts of RAMkohlerm2009-03-16T12:54:14Z2009-03-16T12:54:14ZAgreed. But the question was about "performance"