Tagged Questions

7
votes
2answers
145 views

Static block vs static method - initializing static fields

Out of curiosity, I measured the performance between static block and static method initializer. First, I implemented the above mentioned methods in two separate java classes, like so: First: class ...
5
votes
2answers
353 views

Garbage Collection Overhead Help Needed

I am looking for a little bit of guidance in trying to diagnose a GC related issue. We are testing on Solaris with WebSphere Portal and my current environment has a Garbage Collection Overhead of 7% ...
4
votes
9answers
2k views

Java Performance Testing

I want to do some timing tests on a Java application. This is what I am currently doing: long startTime = System.currentTimeMillis(); doSomething(); long finishTime = System.currentTimeMillis(); ...
3
votes
1answer
42 views

Performance Testing vs Profiling

Am working with lots of mid-complexity Java/Jsp applications and wondering what would be an added advantage of doing performance testing using say Jmeter over profiling using Jprofiler/Netbeans ...
2
votes
1answer
59 views

EC2 ELB performance issues

Two questions about EC2 ELB: First is how to properly run JMeter tests. I've found the following http://osdir.com/ml/jmeter-user.jakarta.apache.org/2010-04/msg00203.html, which basically says to set ...
2
votes
1answer
106 views

Java performance tuning, JNI memory leak

I have a Java application. It is a Linux platform. and we are using Java 6. It is normal sdk java plus some JNI. We using visualvm to monitor the memory leak. We notice from visualvm application ...
2
votes
4answers
470 views

Jmeter - simulating more complex load scenarios?

Been experimenting with Jmeter, and I'd like to know the best way to accomplish: 20 users logging onto an application, over 20 minutes, and performing some actions for another 20 minutes, before ...
1
vote
4answers
72 views

Is JUnit the right tool to write performance tests?

In the last week I've created two classes which my team expressed some concerns about in regards to their performance. To evaluate my code I wrote some simple JUnit tests which exercised these classes ...
1
vote
8answers
169 views

How can I prove that one algorithm is faster than another in Java

Is there anything in Java that would allow me to take a code snippit and allow me to see exactly how many "ticks" it takes to execute. I want to prove that an algorithm I wrote is faster than ...
0
votes
2answers
51 views

android app execution time: knowing the thread execution and memory conception

Hi i had developed an application in android platform. I need to know how we can able to know the thread execution time and memory conception for each thread execution. I am interested to know about ...
0
votes
3answers
60 views

NoClassDefFoundError in a web application under heavy loading

I am performing load tests on my java web app, running in tomcat 7 with NiO connector, running simulation of 1000 users working simultaniously, and I get unexpected result -- application turns to ...
0
votes
1answer
36 views

How can I measure file access performance (and volume) of a (Java) application

Given an application, how can I measure the amount of data read and written by that application? the time spent reading/writing to disk? The specific application is Java-based (JBoss), and ...
0
votes
0answers
149 views

Comparison of Java application servers [closed]

I want to compare different Java application servers like Glassfish, JBoss, Geronimo, WebLogic, WebSphere, especially servers compatible with Java EE. Should I choose other, common used, servers? I ...
0
votes
0answers
68 views

Open source Java web application performance and load testing frameworks (preferrably for Weblogic)

I would like to know if there are good Open source Java web application performance and load testing frameworks (preferrably for Weblogic). Thanks, Sid