Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am really new to Django, and I'm trying have my site display a server status as text. This text, however, is dynamic. I do not understand why, if I go in my model and change the server status function to return 'cats', I don't see 'cats' appear in my browser for like 5 minutes.

From what I have learned so far, I suspect this has to do with Django caching templates on the server side. I have tried removing .pyc files, using @never_cache, and editing settings.py to use DummyCache, and clearing browser cache, all to no avail.

Does anyone know what's going on, or what a possible fix might be? Thanks!

share|improve this question
Probably a stupid question, but is the function cached? Also can you show us a little bit of the code please? – Siddharth Sarda Nov 15 '12 at 5:48

2 Answers

make sure you don't have cache active in your MIDDLEWARE_CLASSES in your settings. Also check the link below: https://docs.djangoproject.com/en/dev/topics/cache/#the-per-site-cache

share|improve this answer
Checked, I don't. – nighthawk454 Nov 18 '12 at 8:31

After changing your code, make sure you are restarting your server e.g. apache or fastcgi.

share|improve this answer
Unfortunately, this is not an option. My hosting, Bluehost, is shared hosting and so we aren't allowed to restart apache/fastcgi. Do I have any options beyond that? – nighthawk454 Nov 18 '12 at 8:30
Touching the fastcgi file might work. – Alasdair Nov 18 '12 at 22:57
I have no experience of running Django with bluehost, so can't offer any further advice if that doesn't work. – Alasdair Nov 18 '12 at 22:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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