I have some maps that contains cached data from db. Currently 5 instance of the same server is running on same machine in different JVM. How can I share maps between JVM? cache is write once and read many. Currently the problem is because of this cache JVM footprint is very big. So storing this map in all JVM is consuming lot of memory. I need some solution which may not consume much cpu time. Is there way to do this in the same way class sharing is done between JVM?

Thanks Nikesh PL

link|improve this question

25% accept rate
Your best bet is probably with one of the key-value caching solutions. Like Memcache or what Terracotta does. Not exactly the same as an in-memory hashmap, but much more memory efficient. – Thilo Sep 29 '11 at 2:32
feedback

2 Answers

Basically, you can't: those are two different address spaces.

You could serialize one and read it from the other, but that wouldn't be like sharing them.

How about a process to manage the cache, and a quick, low-bandwidth interface that your application programs can use to access the data?

link|improve this answer
The look up frequency to the map is very high almost 50million/hour/core. So every time I need to accessing from a different process. It will impact the performance right? – Nikesh PL Sep 29 '11 at 2:35
With that kind of workload -- that's 14K hits/s -- and assuming a relatively high proportion of writes, you should probably not be thinking of Java at all. Consider writing a shared memory module in C/C++ that can be accessed via JNI. You might be able to get that sort of performance with an in-memory database, but 28K context-switches a second could be trouble too. – Charlie Martin Oct 3 '11 at 5:18
feedback

Why dont you look at coherence a project from oracle. Its not free but you can download and test it for free on a development system. It does precisely what you are looking for. It is used as a cache for storing database data but is ultimately a map of keys and values. Its pretty simple to set up and use. Here's a link to get you started:

http://download.oracle.com/docs/cd/E13924_01/coh.340/e14135.pdf

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.