Re: IDE for Apache HTTP server development?

2010-05-01 Thread Nicholas Sherlock
On 1/05/2010 1:43 a.m., Dan Poirier wrote: Does anyone have recommendations for an IDE they use for development on the server? Preferably that runs on Mac, or else Linux. I haven't been a big fan of IDEs, being happy with Emacs for years, but I've found for Java development, I'm clearly more

Re: IDE for Apache HTTP server development?

2010-05-01 Thread Dan Poirier
On 2010-05-01 at 09:35, Nicholas Sherlock n.sherl...@gmail.com wrote: On 1/05/2010 1:43 a.m., Dan Poirier wrote: Does anyone have recommendations for an IDE they use for development on the server? Preferably that runs on Mac, or else Linux. I haven't been a big fan of IDEs, being happy with

IDE for Apache HTTP server development?

2010-04-30 Thread Dan Poirier
Does anyone have recommendations for an IDE they use for development on the server? Preferably that runs on Mac, or else Linux. I haven't been a big fan of IDEs, being happy with Emacs for years, but I've found for Java development, I'm clearly more productive in Eclipse than Emacs. So I'm

Re: IDE for Apache HTTP server development?

2010-04-30 Thread Paul Querna
On Fri, Apr 30, 2010 at 6:43 AM, Dan Poirier poir...@pobox.com wrote: Does anyone have recommendations for an IDE they use for development on the server?  Preferably that runs on Mac, or else Linux. I haven't been a big fan of IDEs, being happy with Emacs for years, but I've found for Java

Apache http server development idea

2009-09-20 Thread tim robertson
Apache server should have a feature where the admin can set the maximum incoming/outgoing bandwidth(http/https/ftp, etc) that the Apache web server can use per month(30 days). The admin can choose what will happen when Apache reaches the monthly bandwidth limit, like to display a bandwidth

Re: Apache HTTP Server development

2009-08-25 Thread Graham Leggett
tim robertson wrote: Apache HTTP Server should be Event-driven by default, instead of using Processes/Threads. Alot of other http web servers are outperforming Apache because they use Events because this reduces cpu and memory usage. Have you tried out the event MPM? Don't forget, for any

Re: Apache HTTP Server development

2009-08-24 Thread Akins, Brian
Patches welcome. On 8/23/09 11:58 PM, tim robertson tim...@email.com wrote: . Events will help Apache server handle lots of concurrent connections because currently Apache cannot handle 10,000 concurrent connections on a low end single core server without Apache crashing or running very

Re: Apache HTTP Server development

2009-08-24 Thread Jorge Schrauwen
Speaking of fastCGI, wasn't a fastCGI module donated to the incubator? Maybe it's time to look more into it if people aren't already. ~Jorge On Mon, Aug 24, 2009 at 8:24 PM, Akins, Brianbrian.ak...@turner.com wrote: On 8/24/09 1:58 PM, Paul Querna p...@querna.org wrote: They then switch to

Re: Apache HTTP Server development

2009-08-24 Thread Ruediger Pluem
On 08/24/2009 09:13 PM, Jorge Schrauwen wrote: Speaking of fastCGI, wasn't a fastCGI module donated to the incubator? Maybe it's time to look more into it if people aren't already. ~Jorge Besides the existing proxy module in trunk, the donation of mod_fcgid is already there:

Re: Apache HTTP Server development

2009-08-24 Thread William A. Rowe, Jr.
Ruediger Pluem wrote: On 08/24/2009 09:13 PM, Jorge Schrauwen wrote: Speaking of fastCGI, wasn't a fastCGI module donated to the incubator? Maybe it's time to look more into it if people aren't already. ~Jorge Besides the existing proxy module in trunk, the donation of mod_fcgid is

Re: Apache HTTP Server development

2009-08-24 Thread Jeff Trawick
On Mon, Aug 24, 2009 at 4:11 PM, William A. Rowe, Jr. wr...@rowe-clan.netwrote: Ruediger Pluem wrote: On 08/24/2009 09:13 PM, Jorge Schrauwen wrote: Speaking of fastCGI, wasn't a fastCGI module donated to the incubator? Maybe it's time to look more into it if people aren't already.

Apache HTTP Server development

2009-08-23 Thread tim robertson
Apache HTTP Server should be Event-driven by default, instead of using Processes/Threads. Alot of other http web servers are outperforming Apache because they use Events because this reduces cpu and memory usage. Events will help Apache server handle lots of concurrent connections because

Re: Apache HTTP Server development

2009-08-23 Thread Paul Querna
On Sun, Aug 23, 2009 at 8:58 PM, tim robertsontim...@email.com wrote: Apache HTTP Server should be Event-driven by default, instead of using Processes/Threads. Alot of other http web servers are outperforming Apache because they use Events because this reduces cpu and memory usage. Events will