Tagged Questions

7
votes
2answers
129 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
343 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(); ...
2
votes
1answer
84 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
422 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
8answers
156 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
36 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
54 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
32 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
122 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
57 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
-3
votes
0answers
34 views

How to measure performace of an API [closed]

How should I proceed if I need to measure performance of API in java using java probe.