On Mar 30, 10:56 pm, Arun Tomar <[email protected]> wrote:
> hi!
>
> well quite a discussion. just to add & share my experience of
> developing on pylons & deploying it.
>
> My requirement was to host multiple pylons application, on a single
> server. so running each app on paster daemon & proxy to it via either
> apache or nginx was not a very optimal solution for me.
>
> So i tried using apache 2+ mod_wsgi, which is good & works well, but
> it's a bit slow for now. i hope that in future it's performance will
> increase more.

Apache/mod_wsgi performance with a typical Python web application
should not be much different to other solutions.

The mistake people often make in comparing it to others is that they
don't take into consideration when benchmarking it that Apache/
mod_wsgi performs lazy loading where as others will often preload the
application. Not realising this and factoring it into how you run your
benchmarks, and/or not configuring Apache/mod_wsgi to preload the
application can really screw up your results and give the impression
that Apache/mod_wsgi performs poorly.

If you have any remaining interest in Apache/mod_wsgi, you may perhaps
want to go over to the mod_wsgi list and can review how you were
actually setting up your system and performing the benchmarking and
work out why you were seeing sub optimal performance. Even if there
were an issue in Apache/mod_wsgi, things will never improve if you
never feedback information about problems you may have encountered.

Graham

> Then i tried nginx+mod_wsgi, which is great in terms of performance,
> speed & scalability. You can just keep on adding different pylons
> webapps as virtual hosts to nginx & everything works. so far it has
> been great.
>
> Our product is a website management system, ( you can  say a CMS sort
> of app ). I"ve deployed the nginx + mod_wsgi on our new VPS, and will
> be going live any day.
>
> --
> Regards,
> Arun Tomar
> blog:http://linuxguy.in
> website:http://www.solutionenterprises.co.in
--~--~---------~--~----~------------~-------~--~----~
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