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 using the Twisted Web static.File resource for the static part of the web server.

For development I would like to be able to add new file or to modify the current static files without having the restart the Twisted web server.

I am looking at the source code for static.File at getChild method and I can not see how the resources are cached: http://twistedmatrix.com/trac/browser/tags/releases/twisted-11.0.0/twisted/web/static.py#L280

From my understanding getChild method is returning a new resource at each call. Any help in creating a non-cached static.File resource is much appreciated.

Many thanks, Adi

share|improve this question

1 Answer

up vote 6 down vote accepted

twisted.web.static.File serves straight from the filesystem. It does not have a cache. Your web browser probably has a cache, though.

share|improve this answer
Many thanks for this confirmation. I found out that the problem was me. I was just looking at the wrong folder. – Adi Roiban Apr 14 '11 at 10:03

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.