RE: Version Control

2005-07-27 Thread David Christensen
David Hofmann wrote: > My company looking at setting up some kind of versioning control software. ... > I understand just enough to be dangerous with CVS. I was going to say, "watch out for subversion's license" (free only for free projects with public access; otherwise a paid commercial license

Re: Two Server Setup Strategy Question

2005-07-27 Thread Perrin Harkins
On Wed, 2005-07-27 at 15:53 -0400, Rodger Castle wrote: > Ah, I see. We should be doing it in chunks and not all at once. Will > adjust to fit and see how that goes. That makes sense. Thank you. There's lots more good information about this here: http://modperlbook.org/html/ch13_01.html - Perrin

Re: Two Server Setup Strategy Question

2005-07-27 Thread Rodger Castle
On Wed, Jul 27, 2005 at 03:27:36PM -0400, Perrin Harkins wrote: > On Wed, 2005-07-27 at 14:15 -0400, Rodger Castle wrote: > > You know, I've been experiencing incremental growth my mod_perl2 httpd > > processes, but these are during operation. > > That's normal. As your processes handle requests

Re: Two Server Setup Strategy Question

2005-07-27 Thread Perrin Harkins
On Wed, 2005-07-27 at 14:15 -0400, Rodger Castle wrote: > You know, I've been experiencing incremental growth my mod_perl2 httpd > processes, but these are during operation. That's normal. As your processes handle requests they will use more memory and grow. Note that these are not memory leaks,

Re: Two Server Setup Strategy Question

2005-07-27 Thread Rodger Castle
On Wed, Jul 27, 2005 at 11:01:56AM -0700, Philippe M. Chiasson wrote: > Jonathan Vanasco wrote: .. > are trying to do. > > > I've always installed mp2 as a dso - should i not? > > It's perfectly fine to do so. As a warning, though, there are known issues > with mod_perl DSO and FreeBSD's defaul

Re: Two Server Setup Strategy Question

2005-07-27 Thread Philippe M. Chiasson
Jonathan Vanasco wrote: > I'd like to use the 2+ server setup strategy: > > Vanilla Apache > bound to port 80 > proxypass to mod_perl server on different ports > > I got that running on Linux using 2 sourcetrees as in the modperlbook > > I just got a new server with FreeBSD 5.4-RELEASE o

Re: Version Control

2005-07-27 Thread Jonathan Vanasco
I really like Subversion but i'm not too crazy about it without trac. i don't use trac for ticketing though - i use it for viewing changesets and versions of files -- its absolutely amazing at that

Re: Version Control

2005-07-27 Thread Mike Whitaker
On 27 Jul 2005, at 17:22, David Hofmann wrote: My company looking at setting up some kind of versioning control software. Currently we have about 10 programs. We use Perl or C depending on the project. I understand just enough to be dangerous with CVS. Which is the current suggestion to

Re: Version Control

2005-07-27 Thread Philip M. Gollucci
David Hofmann wrote: My company looking at setting up some kind of versioning control software. Currently we have about 10 programs. We use Perl or C depending on the project. Having used PerForce(PERL's system), CVS(FreeBSD/Redhat), SVN(Apache-ASF,mod_perl) I'm saying SVN is the clear winne

Re: Version Control

2005-07-27 Thread Praveen Ray
Depends on your team size and your development process. subversion is pretty good. However, it doesn't do merging of branches as neatly as I'd like it to. But if you dont branch too often, it's excellent. --- David Hofmann <[EMAIL PROTECTED]> wrote: > My company looking at setting up some kind

Re: Version Control

2005-07-27 Thread Ken Simpson
Set yourself up with Subversion. It's easy to configure especially if you are running Apache 2 already and there is an excellent client for Windows (TortoiseSVN). If you're gung ho, you could even set up trac for issue tracking. It integrates really well with SVN and is a good solution for small t

Version Control

2005-07-27 Thread David Hofmann
My company looking at setting up some kind of versioning control software. Currently we have about 10 programs. We use Perl or C depending on the project. I understand just enough to be dangerous with CVS. Which is the current suggestion to use. However before we make use of it I want ask opin

Errordocument Problem

2005-07-27 Thread Shane De Jager
Hi I just moved for mod_CGI to mod_perl 2. I am running under PerlRun for the first step of the transition. Everything seems to work fine except when I refer to a page which is accessed through the ErrorDocument directive I have a problem. The page loads correctly but I have the following error

Re: writing to file with mp2

2005-07-27 Thread Stas Bekman
Philip M. Gollucci wrote: Marc Lambrichs wrote: What's the best way to write to a file using mp2? IO::File is slow and Apache::File is lost... You could use this: http://perl.apache.org/docs/2.0/api/APR/PerlIO.html It's certainly not the fastest way. There is some explanation here: http://p