- 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
-
Bugzilla is the Bugs/Issues Tracking Tool from The Mozilla Organization. Version 2.18 is the latest stable release. There are couple of res...
-
I have been assigned to prepare a checklist for my project. So, while compiling a checklist for SQLs, I suggested to use SELECT COUNT(COLUMN...
-
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 see a lot of people using 'wq' a lot but never a form 'x'. In vi and vim, if you want to save and exit with a simple key s...
-
Both Primary & Unique keys are Indexes. Index - An index is a structure in a table that orders the data. It allows the database to acce...
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