Tagged Questions
6
votes
1answer
143 views
JVM minute long GC
As seen below, in the midst of everything working as expected a stop-the-world GC operation took +60 seconds. It could be determined to be a stop the world for the entire time, because the ...
2
votes
5answers
214 views
How can I allocate 8 GB ( not 1 GB ) RAM to my JDK on windows
JDK on Windows takes max around 2 GB RAM. Even if we allocate more RAM to our JDK; it doesnt take it. If I need to run a process which need 8 GB RAM on Windows; how can I achieve it ?
Do we have any ...
0
votes
1answer
209 views
Is Terracotta a kind of reliable alternative to JVMs?
I come across Terracotta as a distributed JVM that is stable and robust, however as my understanding of Terracotta is shallow, i am not sure if Terracotta is an alternative to JVMs?
It looks ...
0
votes
2answers
80 views
How to implement something like Terracota?
How Terracotta knows that object is changed inside one JVM to propagate this change to another JVM? I.e. how can I code similar behavior?
I want to be able to watch changes in instances of some ...
1
vote
1answer
189 views
Need universal/dynamic serialization/marshaling, similar to Terracotta
Problem: The Software I use, Lift, has "user sessions", where one can put any kind of objects, which are preserved between user requests (with a GC timeout). While it's easy to use and powerful, it ...