[Please use the mailing list.]
On Sun, 14 May 2006 15:16:49 -0400, Yannick Gingras ygingras@ygingras.net wrote:
I know when I finished to generate the fast content, is there a way to pack and send a mod_lisp chunk? Something like FINISH-OUTPUT would be great.
I don't think so. You'll have to modify mod_lisp to get what you want. See the function FlushLispBuffSocket.
Otherwise using Hunchentoot is doable.
Note that Hunchentoot only works with LispWorks.
Edi Weitz edi@agharta.de writes:
I know when I finished to generate the fast content, is there a way to pack and send a mod_lisp chunk? Something like FINISH-OUTPUT would be great.
I don't think so. You'll have to modify mod_lisp to get what you want. See the function FlushLispBuffSocket.
A quick look at mod_lisp2 (no FlushLispBuffSocket there) tells me that the buffer size is 4096. If I print at least that much between sleeps I have the desired result: the browser receives a part of the page then waits for the rest. For now I think I will just lower the mod_lips2 buffer size, maybe something like 512 or 1024. That should be enough since the interesting part of the pages will be at least that big and its ok to wait until you have a reasonable chunk of page to show.
Thanks for the pointers!
On Sun, 14 May 2006 16:17:26 -0400, Yannick Gingras ygingras@ygingras.net wrote:
no FlushLispBuffSocket there
Right, sorry. I was talking about mod_lisp1.
Thanks for the pointers!
You're welcome... :)