1
vote
Speeding Up Java
Don't optimize blindly.
Use Yourkit or any other good profiler to find out the "hotspots" in your application.
You need not only take a look a CPU time, but also at how much memory is all …
3
votes
Should a developer aim for readability or performance first?
using << would by a micro optimization.
So Hoare's (not Knuts) rule:
Premature optimization is the root of al …
1
vote
How can Google be so fast?
HenryR is probably correct.
Map Reduce does not play a role for the search itself, but is only used for indexing.
Check …
3
votes
HTTP vs HTTPS performance
The current top answer is not fully correct.
As others have pointed out here, https requires handshaking an …
1
vote
Is there some industry standard for unacceptable webapp response time?
Yes Nielsen's article has some good info about how psychology is involved.
Here
you can find m …
1
vote
Which Java profiler is better: JProfiler or YourKit?
Yourkit
It's low overhead, stable, easy to install on the JVM to be profiled (just one dll) and powerful.
For analyzing heap dumps it's the only profiler that comes close to the …
0
votes
Best server Performance Monitoring Tool for Java Servers
Dynatrace is a great monitoring tool.
Jinspire has also a tool that looks very promisin …
7
votes
Java very large heap sizes
12Gb should be no problem with a decent JVM implementation such as Sun's Hotspot.
I would advice you to use the Concurrent Mark and Sweep colllector ( -XX:+UseConcMarkSweepGC) when using a SUN VM. …
4
votes
How do you measure page load speed?
"Page Load time" is really not easy to define in general.
It depends on the browser you use, because different browsers may do more requests in parallel, because javascript has differents speeds i …
0
votes
Is a good idea to enable jmx (lambda probe) on a production server?
it depends on the JMX implementation and on how expensive the stuff is you want to monitor.
I now at least one JMX application, which has a relatively high memory overhead.
…
0
votes
Java File I/O Performance Decreases Over Time
Check
static void read3() throws IOException {
// read from the file with buffering
// and with direct access to the buffer
MyTimer mt = new MyTimer();
…
1
vote
Is there a workaround for Java’s poor performance on walking huge directories?
I doubt the problem is relate to the bug report you referenced.
The issue there is "only" memory usage, but not necessarily speed.
If you have enough memory the bug is not relevant for your probl …
1
vote
Updating from Java 1.4.2 to Java 6 (both Sun VMs) results in slower performance
Theoretically it could be that you application consumes more memory, because there were changes to the way Strings share their internal char[]. Less sharing is done after 1.4.
Check my old blog at …
1
vote
Why do pages get slower as memory usage increases in Internet Explorer
Even without swapping,that's caused by the "stupid" implementation of the Garbage Collector for Javascript in IE. It uses some heuristics that call the GC more often, if there are more objects. …
2
votes
Memory Allocation/Deallocation Bottleneck?
In Java (and potentially other languages with a decent GC implementation) allocating an object is very cheap. In the SUN JVM it only needs 10 CPU Cycles. A malloc in C/c++ is much more expensive, j …
