Speed up images in Tomcat 6 - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T21:52:16Z http://stackoverflow.com/feeds/question/109592 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/109592/speed-up-images-in-tomcat-6 2 Speed up images in Tomcat 6 ethyreal 2008-09-20T22:15:35Z 2009-01-14T11:50:08Z <p>In tomcat 6 i have a servlet running openbluedragon, everything compiles and servers up quik, with the exception of images, they really lag significantly. Any suggestions optimization for image serving?</p> <p>Here is my server.xml:</p> <pre><code> &lt;Service name="Catalina"&gt; &lt;Connector port="8009" protocol="AJP/1.3" /&gt; &lt;Connector port="8080" maxThreads="100" protocol="HTTP/1.1" connectionTimeout="20000" /&gt; &lt;Engine name="Standalone" defaultHost="hostname.whatever" jvmRoute="ajp13"&gt; &lt;Realm className="org.apache.catalina.realm.UserDatabaseRealm" resourceName="UserDatabase"/&gt; &lt;Host name="hostname.whatever" appBase="webapps" unpackWARs="true" autoDeploy="true" xmlValidation="false" xmlNamespaceAware="false"&gt; ...context &lt;/Host&gt; &lt;/Engine&gt; &lt;/Service&gt; </code></pre> http://stackoverflow.com/questions/109592/speed-up-images-in-tomcat-6/109679#109679 3 Answer by flowers for Speed up images in Tomcat 6 flowers 2008-09-20T22:50:38Z 2008-09-20T22:50:38Z <p>If you have the option, you could add a reverse proxy in advance of your application. At work I have an Apache web server that receives all inbound HTTP connections. Based on the URL, it either forwards the request to another server or serves up the content itself. I've used this approach to accelerate serving up static content for a Trac site. The ProxyPass and ProxyPassReverse directives are a good place to start looking if you want to go this route.</p> <p>As a simple example, if you have a virtual directory called /images, Apache could serve up any request for something in that directory and forward everything else to your Tomcat instance. The syntax is pretty comprehensive. If there is any method at all to the way your static content is identified this is an approach that will work.</p> <p>Apache isn't the only choice here. I think all modern web servers include similar functionality. If I was starting today I'd probably look at LigHTTPd instead, just because it does less.</p> <p>There may even be caching reverse proxies that figure this out for you automatically. I'm not familiar with any of them though.</p> http://stackoverflow.com/questions/109592/speed-up-images-in-tomcat-6/113480#113480 3 Answer by Olaf for Speed up images in Tomcat 6 Olaf 2008-09-22T06:35:28Z 2008-09-22T06:35:28Z <p>Another option is to use apache as a frontend, connecting tomcat with mod_jk. This way you can let apache serve static content (e.g. images, css, javascript) and let tomcat generate the dynamic content. Might leave a bit of work to separate the static content from the dynamic ones, but works great for me.</p> <p>On Unix, having an apache as frontend is a nice option because being bound to port 80 you're often forced to run as root. Apache knows how to drop root permissions after binding a port, Tomcat doesn't. You don't want a server faced to the public to run as root.</p> <p>(This is similar to the reverse proxy answer, but doesn't involve a proxy but mod_jk)</p> http://stackoverflow.com/questions/109592/speed-up-images-in-tomcat-6/442686#442686 3 Answer by Simon Groenewolt for Speed up images in Tomcat 6 Simon Groenewolt 2009-01-14T11:50:08Z 2009-01-14T11:50:08Z <p>Are you serving the same set of images over and over? In that case adding a servlet filter that adds a reasonable Expires header might save tomcat a lot of work. It will not increase the speed of the served image but will just make the number of requests it has to handle less. Lots of examples for this on the web.</p>