vote up 0 vote down star

I'm developing a Django site. I'm making all my changes on the live server, just because it's easier that way. The problem is, every now and then it seems to like to cache one of the *.py files I'm working on. Sometimes if I hit refresh a lot, it will switch back and forth between an older version of the page, and a newer version.

My set up is more or less like what's described in the Django tutorials: http://docs.djangoproject.com/en/dev/howto/deployment/modwsgi/#howto-deployment-modwsgi

I'm guessing it's doing this because it's firing up multiple instances of of the WSGI handler, and depending on which handler the the http request gets sent to, I may receive different versions of the page. Restarting apache seems to fix the problem, but it's annoying.

I really don't know much about WSGI or "MiddleWare" or any of that request handling stuff. I come from a PHP background, where it all just works :)

Anyway, what's a nice way of resolving this issue? Will running the WSGI handler is "daemon mode" alleviate the problem? If so, how do I get it to run in daemon mode?

flag

71% accept rate

3 Answers

vote up 2 vote down

Because you're using mod_wsgi in embedded mode, your changes aren't being automatically seen. You're seeing them every once in a while because Apache starts up new handler instances sometimes, which catch the updates.

You can resolve this by using daemon mode, as described here. Specifically, you'll want to add the following directives to your Apache configuration:

WSGIDaemonProcess example.com processes=2 threads=15 display-name=%{GROUP}
WSGIProcessGroup example.com
link|flag
I don't need virtual hosts to make this work do I? – Mark Oct 28 at 23:52
I assume you can just put the declarations in the same context as WSGIScriptAlias. – scompt.com Oct 29 at 7:45
This seems to have no effect at all, btw. – Mark Nov 2 at 4:09
vote up 5 vote down

You can resolve this problem by not editing your code on the live server. Seriously, there's no excuse for it. Develop locally using version control, and if you must, run your server from a live checkout, with a post-commit hook that checks out your latest version and restarts Apache.

link|flag
yes but sometimes prod environnement behaves differently than the builtin dev server so no choice :) – jujule Oct 28 at 10:31
@jujule: you can set up a test domain on the prod server so that you can test what you develop locally. I can think of no excuses that can justify editing code on the prod server. – shanyu Oct 28 at 16:45
it's so much work to replicate the server environment though! my server is running ubuntu/apache2/postgres, and my home computer uses win7... and i haven't even tried to install the other two. assuming i did get that running, how would i migrate the db to production? – Mark Oct 28 at 23:50
vote up 4 vote down

Read the mod_wsgi documentation rather than relying on the minimal information for mod_wsgi hosting contained on the Django site. In partcular, read:

http://code.google.com/p/modwsgi/wiki/ReloadingSourceCode

This tells you exactly how source code reloading works in mod_wsgi, including a monitor you can use to implement same sort of source code reloading that Django runserver does. Also see which talks about how to apply that to Django.

http://blog.dscpl.com.au/2008/12/using-modwsgi-when-developing-django.html http://blog.dscpl.com.au/2009/02/source-code-reloading-with-modwsgi-on.html

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.