2
votes
3answers
54 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 …
1
vote
4answers
67 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 bette …
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 e …
1
vote
9answers
381 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 …
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 impo …
1
vote
1answer
34 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 …
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. …
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?
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, …
4
votes
3answers
443 views
JVM -XX:+StringCache argument?
I was recently reading about all the JVM arguments available in JRE 6 [Java VM Options] and saw this :
-XX:+StringCache : Enables caching of commonly allocated strings.
Now …
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...
#
# A …
5
votes
5answers
456 views
Do you plan to use the Scala programming language and on what project?
Where do you seen using Scala for your project?
1
vote
4answers
88 views
Switching between bytecode versions for a Java class file
Given a Java class file (ClassName.class) with bytecode version X is there a general way to convert this class file from being represented in bytecode version X to being represente …
0
votes
1answer
28 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 (## …
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), 1 …
