This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Re: cgi-bin
- From: Jeff Sturm <jsturm at one-point dot com>
- To: Erik Poupaert <erik dot poupaert at skynet dot be>
- Cc: java at gcc dot gnu dot org
- Date: Sun, 14 Sep 2003 12:23:24 -0400 (EDT)
- Subject: Re: cgi-bin
On Sun, 14 Sep 2003, Erik Poupaert wrote:
> I'm trying to work now on an example application in gcj that works according to the
> "cgi-bin" system.
Interesting... clearly this is something gcj ought to do better than
standaard JVM's.
> Now, I've noticed that I've run into a problem: startup time. It's less of a problem
> than with bytecode, since libgcj.so is potentially (subsequently) cached in memory.
> (What options are there already available to trim its size and therefore load time
> and memory footprint?)
This is on linux/x86? Last time I looked at this, I found libgcj.so
startup time was dominated by relocation processing.
You should get faster startups with a static build, or else experiment
with prelinking support that has been trickling into recent linux
distributions (RH9, maybe?)
Jeff