4
votes
3answers
80 views
How does Parrot compare to other virtual machines?
Parrot is the virtual machine originally designed for Perl 6.
What technical capabilities does the Parrot VM offer that competing virtual machines such as the Java Virtual Machine (JVM)/Hotspot VM …
1
vote
4answers
69 views
What are the best garbage collection settings for client side?
Recent JVM's have a lot of XX parameters for garbage collection (see here for example), but what are the options which can make a client side Swing application really perform better?
I should note …
1
vote
2answers
34 views
Registering multiple keystores in JVM
Hello,
I have two applications running in the same java virtual machine, and both use different keystores and truststores.
A viable option would be use a single keystore and import all the other …
1
vote
1answer
35 views
Help running a jar from within a java program using JarClassLoader
I'm trying to run a jar within a java program and capture its stdout. I want to do this to avoid the JVM startup cost every time the jar is run. What is the simplest way to do this?
I started by …
1
vote
2answers
22 views
JVM and CLR allocation optimization
Do the JVM and .NET VM allocate objects on the stack when it is obvious to the runtime that an objects lifetime is limited to a certain scope?
1
vote
4answers
41 views
jvm heap limit on SUSE
hello,
I hope you can help me on the problem we have with SUSE and JDK 1.4.x:
my suse is PAE enabled with 15Gb RAM.
unfotunately jvm cannot allocate more than 1900Mb for heap size.
So java -Xmx2048m …
1
vote
9answers
382 views
Running a fastest-algorithm competition
I'd like to run competitions like code golf competitions, but the winner would have the fastest algorithm, not the smallest code.
One fair way to measure speed of an algorithm is to use a neutral …
0
votes
1answer
30 views
Jamon statistics aggregation across multiple JVMs
Hello,
I have a tomcat server running a webapp. Apart from this there are two other JVMs that run batch processing tasks. Jamon is a really cool way to monitor performance, hits etc., and can be …
27
votes
13answers
1k views
In the 13 years that Java has been around, are there any specific examples of backward incompatibilities?
It has been thirteen years between the initial public release of Java 1.0 (1996) and the current stable release 1.6.0_16 (2009).
During those thirteen years the following notable releases have been …
0
votes
1answer
25 views
Why do some JVM/Linux Kernels show each java thread as a process and other not? How can I determine beforehand what the behavior will be?
I have two machines, one running 2.4.18 and one running 2.4.20. Both run Java 1.5 build 13. On one machine (2.4.18), each thread shows up as a separate process in the ps output, and on the other the …
0
votes
2answers
61 views
Java HotSpot error
Curious if anyone could help out in regards to a Java HotSpot dump...saw some reference to head over to the Sun Forums, figured I would try here first...below is the dump...
#
# An unexpected error …
9
votes
7answers
235 views
Can Sun JVM handle gigantic heap sizes without problems, and how?
I have heard several people claiming that you can not scale the JVM heap size up. I've heard claims of the practical limit being 4 gigabytes (I heard an IBM consultant say that), 10 gigabytes, 32 …
0
votes
1answer
29 views
Error: Your application used more memory than the safety cap of 500m. Specify -J-Xmx####m to increase it (#### = cap size in MB). Specify -w for full OutOfMemoryError stack trace
i was running a jruby something.rb script and suddenly it throws this
Error: Your application used more memory than the safety cap of 500m.
Specify -J-Xmx####m to increase it (#### = cap size in …
4
votes
12answers
370 views
Why should methods have a single entry and exit points?
Looking around forums and the web, i have come across the advice that a method should have single entry and exit points. My first question is does the sinlge entry point apply to java. I can't see how …
2
votes
2answers
89 views
Setting JVM parameters at runtime
Is it possible to change/modify/adding VM parameters after the JVM is already loaded (running)? If so, how can I do it?
