Server Performance

Hi,In my project,I need a web service which could get all the network parameters and improve the performance of the server .So Can u please tell me how to improve the performance of the server in a network using java.Thanks.
[245 byte] By [Sun-Screena] at [2007-10-3 3:31:20]
# 1
All you can do is increase the socket send and receive buffer sizes, change the traffic class of sockets, or run external programs.
ejpa at 2007-7-14 21:25:21 > top of Java-index,Core,Core APIs...
# 2

Most of the network is going to be dynamic - even your cell phone is dynamic.

TCP/IP is basically dynamic, and other routed protocols used between nodes will vary.

The idea is not to MAX out your resources, but rather to dynamically throttle them to ensure high speeds and high availability.

It's a toss-up, you can get higher speed, but fewer connections (and charge more / have fewer customers), or you can lower speeds and more connections (and make less profit / have fewer customers).

Besides what you can do locally, you can choose UDP as transport - but that comes with its own issues.

If you've got network admin rights, write up some config interface tweaks and a nice QoS policy for your app.

That, or...just put in Swiss' hacked TCP/IP stack on an OC-768 link between your supped-up 10gig multi-processor multi-core stripped down Linux machines.

watertownjordana at 2007-7-14 21:25:21 > top of Java-index,Core,Core APIs...