0
votes
What must I do to make content such as images served over HTTPS be cached client-side?
75 images sounds like a lot. If it is a lot of small images, there are ways of bundling many images as one, you might see if you can find a library that does that. Also you can probably force the …
1
vote
String vs StringBuilder
Using strings for concatenation can lead to a runtime complexity on the order of O(n^2).
If you use a StringBuilder, there is a lot less copying of memory that has to be done. With the Str …
3
votes
Best server Performance Monitoring Tool for Java Servers
I am a big fan of VisualVM. You will have to expose MBeans via JMX yourself if you want informaton specific to your app. Tomcat(and oth …
0
votes
Java 2D Drawing Optimal Performance
There are couple of things you will need to keep in mind
1) is refreshing this link shows how to …
0
votes
Web Service versus regular Http Request
I would think the difference wouldn't much if any difference. The HttpRequest may actually be faster just because its using one less layer in the stack. If you see yourself expanding the services …
