RE: Advice needed. (web app. performance)

2001-01-30 Thread Vasily Petrushin
On Tue, 30 Jan 2001, Vladislav Safronov wrote: Try Unix sockets > What about this idea: > > open N 'ispell -a' processes for writing and reading at httpd start up, > save their descriptors into an array in some Perl module and then > mark decriptors in the table then as "busy" or "idle". But

RE: Advice needed. (web app. performance)

2001-01-30 Thread Vladislav Safronov
What about this idea: open N 'ispell -a' processes for writing and reading at httpd start up, save their descriptors into an array in some Perl module and then mark decriptors in the table then as "busy" or "idle". But the question is how to share this dynamicly modified table among all httpd p

Re: Advice needed. (web app. performance)

2001-01-29 Thread Robert Landrum
Wasn't ispell ported to the PPT? If so, you could rip the source from the perl power tools library and eliminate the external call to ispell completely. This doesn't povide any forking or server stuff, but I've found that solutions like that are rarely needed. At 1:34 PM -0700 1/29/01, John

Re: Advice needed. (web app. performance)

2001-01-29 Thread John BEPPU
[ date ] 2001/01/29 | Monday | 05:52 PM [ author ] Vladislav Safronov <[EMAIL PROTECTED]> > Where can I find sample code (skeleton code) for such server? > Would you recommend any other method? I wrote a little server that wraps around mpg123. Maybe the structure of this module will help you

RE: Advice needed. (web app. performance)

2001-01-29 Thread Vladislav Safronov
I swear, I searched CPAN before posting the question to the conference and I used Lingua::Ispell in my application. But Lingua::Ispell just opens 'ispell -a' on reading and writing for every new httpd process, so it take time to open dictionaries or switch to other language dictionary. It provide

Re: Advice needed. (web app. performance)

2001-01-29 Thread Ken Williams
[EMAIL PROTECTED] (Stas Bekman) wrote: >On Mon, 29 Jan 2001, Vladislav Safronov wrote: >> I've just finished a simple web based spellcheck application >> based on ispell, it's written as perl module which just call >> ispell on every request (actually keeps it open afert first request). >> The bad

Re: Advice needed. (web app. performance)

2001-01-29 Thread Ken Y. Clark
On Mon, 29 Jan 2001, Vladislav Safronov wrote: > Date: Mon, 29 Jan 2001 17:52:42 +0300 > From: Vladislav Safronov <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED] > Subject: Advice needed. (web app. performance) > > Hi, > > I've just finished a simple web based spellcheck application > based on ispe

Re: Advice needed. (web app. performance)

2001-01-29 Thread Stas Bekman
On Mon, 29 Jan 2001, Vladislav Safronov wrote: > Hi, > > I've just finished a simple web based spellcheck application > based on ispell, it's written as perl module which just call > ispell on every request (actually keeps it open afert first request). > The bad thing is N users used spellcheck

Re: Advice needed. (web app. performance)

2001-01-29 Thread Matt Sergeant
On Mon, 29 Jan 2001, Vladislav Safronov wrote: > Hi, > > I've just finished a simple web based spellcheck application > based on ispell, it's written as perl module which just call > ispell on every request (actually keeps it open afert first request). > The bad thing is N users used spellcheck t

Re: Advice needed. (web app. performance)

2001-01-29 Thread Robin Berjon
At 17:52 29/01/2001 +0300, Vladislav Safronov wrote: >I've just finished a simple web based spellcheck application >based on ispell, it's written as perl module which just call >ispell on every request (actually keeps it open afert first request). >The bad thing is N users used spellcheck there ar