On Mar 6, 1:24 pm, Malcolm Tredinnick <malc...@pointy-stick.com>
wrote:
> On Thu, 2009-03-05 at 18:08 -0800, Paulo wrote:
> > Hi
>
> > I want to install Django on my webserver, but i would like to know
> > from you if django has an intense resource usage (memory, cpu) or it's
> > not a concern?
>
> As always, it depends on what you're doing. There simply *cannot* be any
> general answer to that question. That being said, typing "resource
> usage" into the search box on the django-users Google Groups page turns
> up a bunch of previous messages on this topic. Searching the archives
> will certainly give you some ideas of things to consider when
> benchmarking.
>
> The solution is always to profile and benchmark on your development
> systems before deploying.

It also depends on how you intend to deploy Django. If you try and run
it under mod_python or mod_wsgi embedded mode in Apache with prefork
MPM, then it can take huge amounts of memory. Even with worker MPM you
have to be careful and consider changing the default Apache MPM
settings as they default to be values more appropriate for static file
serving and PHP. Better deployment scenarios are mod_wsgi daemon mode
or fastcgi solutions with number of processes/threads used strictly
controlled.

So, how do you intend deploying it?

Graham
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to