On May 20, 2:10 pm, Jonathan Vanasco <[EMAIL PROTECTED]> wrote:
> so is Apache considered to be a good thing (through mod_wsgi ,
> mod_python , or other ?)
>
> i've been doing mod_perl dev for years, and have had some experience
> with mod_python -- generally speaking, my experience is that if you
> can avoid apache you're better off.  i guess that's what is throwing
> me off.  i equate apache with "isn't there a better way now?"

It really depends on what you want to do.

If you are running some small site more or less anything will do as it
generally isn't the web server that is your bottleneck. Of course, if
you are running in a memory constrained VPS you wouldn't use Apache
unless you properly investigate properly how you need to configure it
to work under such a constraint.

If you are going to run a large site which is able to respond well to
bursts in traffic, running Python embedded in Apache running prefork
MPM, with huge amounts of memory in the box is generally the best
approach. This is because although memory usage will be high, being
non multithreaded you can use any cpu/cores to best advantage, plus
you benefit from Apache's ability to create dynamically more processes
to handle demand when required and then reap them when no longer
required.

In other words, it is impossible to answer you question without really
knowing what your site is doing, how big it is, amount of traffic etc
etc.

Graham
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"pylons-discuss" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/pylons-discuss?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to