Is there a way to programmatically add URL Patterns to Django without having to restart the server?
Or is there a way force Django to reprocess/cache URL patterns ( the URLconf )?
|
Is there a way to programmatically add URL Patterns to Django without having to restart the server? Or is there a way force Django to reprocess/cache URL patterns ( the URLconf )?
| |||
|
show 8 more comments
feedback
|
|
If you use gunicorn without code preloading, just send a HUP to the gunicorn master process, it will spawn new workers which load the new code, and gracefully shut down the old ones, without a single lost request! | |||
|
feedback
|
|
I tried something like this by hacking some things in
Alternatively, you might try to unset the
Again, not guaranteed that this will work (I'm working from memory from code that I've obviously discarded for some reason). But django/core/urlresolvers.py is definitely the file you'll want to look at. EDIT: Decided to experiment some with this and it didn't work... EDIT2: As I thought, your URL modules will be cached by Python. Simply reloading them as they change might work (using I tried So the trick might be this simple: Manually reload your URL module. | ||||
feedback
|
mod_wsgi? If so, you can restart your app without restarting the entire Apache server. – S.Lott Feb 1 '11 at 18:58mod_wsgi, the production server restarts itself when you touch thewsgifile. – S.Lott Feb 1 '11 at 19:25