Re: slow static pages

"John C. Mallery" <[email protected]> Fri, 18 Aug 2006 10:03:55 -0400
Newsgroups gmane.lisp.cl-http
Message-ID <[email protected]>
1.  if you are running LW, MCL, or CMUCL, best to join the beta testers.

2. best to make sure it is not a problem with your client, eg domain  
look up.

3.  I would try running the profiler on your lisp to determine where  
the time is being spent.

4. you could be having some issues fetching the data off disk.  If  
pages are static (or server side includes), it often pays to use the  
data cache to serve them from physical memory.  See HTTP:DEFINE- 
CACHED-DATA

5.  you may want to check the machine to make sure it has enough  
physical memory, a good network connection, and an unfragmented disk.

BTW, your URL works fine for me.

On Aug 18, 2006, at 9:41 AM, Dr. Helmut G. Enders wrote:

> Version: cl-http-70-214-s84-devo
>
> I serve static html pages  (a local copy of http://www.bsi.bund.de/ 
> english/gshb/manual/index.htm )
> via this url.
>
> (http:export-url #u"/doc/"
>            :directory
>            :recursive-p t
>            :pathname  *data-directory*
>            :expiration `(:interval ,(* 15. 60.))
>            :public t
>            :language :en
>            :keywords '(:it-baseline-protection
>                        :it-security-guidelines
>                        :it-grundschutz-manual))
>
> It is very slow (more than half a minute per page).
> Any ideas how i can speed up this process ?
>
> Helmut
>
> _______________________________________________
> WWW-CL mailing list
> [email protected]
> https://lists.csail.mit.edu/mailman/listinfo/www-cl


_______________________________________________
WWW-CL mailing list
[email protected]
https://lists.csail.mit.edu/mailman/listinfo/www-cl