- Get a faster computer (:D)
- Make sure your code is not doing slow things. (Use a profiler like JProbe)
- Remove any jar files you don't need. When searching for classes every JAR file needs to be examined to find the needed class. Also during webapp startup, jar files are searched for TLD files. If the jar file is not there - there is nothing to search.
- Remove any webapps you don't need. (So remove the all the webapps installed with tomcat)
- Tweak memory parameters - Google is your friend.
- Trim the config files as much as possible. XML parsing is not cheap. The less there is to parse - the faster things will go.
Blog on things around me - Quality Management, Free & Open Source Software, Gadgets, Utilities...
Wednesday, July 6, 2005
How do I make Tomcat startup faster?
These are a few of the options u can try to make your Tomcat Server startup faster:
Subscribe to:
Post Comments (Atom)
Total Pageviews
Popular Posts
-
Here is the list of Online Hindi Radio Stations. Copy the URL in your media player and enjoy !! 106.2 HUMFM - UAE ==> http://www.humfm.c...
-
There are four types of JDBC database driver: The JDBC/ODBC bridge driver (Type 1) A piece of native C-code that translates a JDBC call to ...
-
Here are a few of the JDBC Performance pointers. Hopefully, there are a lot more, which you may be aware of, but not mentioned here. Care to...
-
I just decied to look for a few commonly used UNIX command. A quick Google produces a lot more, but here are a list of more useful commands...
-
Always give your 100% to work... :) [received in an email]
2 comments:
or .. use Jetty!
:)
Instead of Jetty, I would recommend Resin. Resin has given excellent results, especially with IBM JDK. Alternatively, use IBM JDK with Tomcat.
Post a Comment