RE: CVS

2001-11-15 Thread Sheth, Niraj
Ken, I am using Rcs.pm in production. Could you give me more details about the flaws you have found and if possible could you post the patch(or code change)? Thanks, -Niraj -Original Message- From: Ken Y. Clark [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 15, 2001 9:43 AM To: Jon

RE: [BUG] $r->subprocess_env() leaking to %ENV

2001-07-17 Thread Sheth, Niraj
FYI http://forum.swarthmore.edu/epigone/modperl/quajugrar/DDC7EF25B9D6D311A2 [EMAIL PROTECTED] -Original Message- From: Dominique Quatravaux [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 17, 2001 2:24 PM To: [EMAIL PROTECTED] Subject: [BUG] $r->subprocess_env() leaking to %ENV He

RE: flushing appears to be broken with perl 5.6.0

2001-01-08 Thread Sheth, Niraj
Stas, I am printing 4k of data for each push .. # this to flush buffer of front end proxy-server. my $new_line = "\n" x 4096; print $new_line; (make sure gzip filter if off ...) http://forum.swarthmore.edu/epigone/modperl/kerdsnestim/14702.7611.496757.13 [EMAIL PROTECTED] I am sure there are

RE: env in background process

2000-09-26 Thread Sheth, Niraj
Thanks for looking at it. I prefer "%ENV = ();" in PerlCleanupHandler handler. (as i don't have to modify so many scripts). I don't think it has any negative effect ... -Niraj > -Original Message- > From: Doug MacEachern [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, September 26, 2000 3:3

RE: env in background process

2000-08-23 Thread Sheth, Niraj
Didn't get any reply yet on this, so I think i am doing something very stupid ... Can anyone try it and tell me if gets the same result? Thanks, Niraj > -Original Message- > From: Niraj Sheth [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, August 15, 2000 11:03 AM > To: [EMAIL PROTECTED] >

How do I make proxy server not to buffer o/p of mod_perl server?

2000-04-12 Thread Sheth, Niraj
Hi All, How do configure front end proxy server NOT to buffer o/p of mod_perl server? ProxyReceiveBufferSize doesn't help. I read thru Eric Cholet's post, he pointed out HUGE_STRING_LEN (8k) is the buffer size. Is it configurable, may be in latest 1.3.12 or i have to change manually and recompil

RE: pool of DB connections ?

1999-11-29 Thread Sheth, Niraj
Have you looked at "Perl Cookbook"? It has nice discussion on prefork server. you can customize it according to your requirement. e.g. You can control exactly how many DB connection you want(background processes which keep persistance connection to database). You can move this to another server i

RE: Urgent--Any limit on Hash table in Shared Memory?

1999-10-08 Thread Sheth, Niraj
(for solaris, don't know much about other os) /etc/system set shmsys:shminfo_shmmax= set shmsys:shminfo_shmmni= set shmsys:shminfo_shmseg= (kernel load this at boot time). shmmax is maximum amount of memory you can request ... shmmni is the maximum number of shared-memory id available in system