Hi Currently, I am trying to fix an old application that is loading 500 MB of data into memory and crashing the JVM. I am wondering two things:
1. Does JCS put the cache data into memory? If yes, then I am going to still have too much for the JVM. Does it write it to disk and then only hold the keys in memory? Unfortunately, there are over a million records in this set. 2. Can JCS be setup to run in it's own memory space (JVM) and then use some connection mechanism from the original application to JCS (like a database connection of some sort)? This way the application JVM is not overloaded and the cache JVM can be configured properly. Any other ideas or thoughts? Thanks. David Armour