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 new to google app engine. I am uploading localhost host project created in python to google app engine. It is uploading successfuly, but js changes are not reflecting live. I have flushed Memcache, but it is not working. How can I get rid of this problem?

share|improve this question
When you uploaded the new version of your application, did you change the version: field in your app.yaml? – Adam Crossland Apr 24 '12 at 14:07

2 Answers

up vote 3 down vote accepted

There is a built in cache in google app engine for static file, you can control the duration of the cache by using default_expiration (or setting expiration per folder).

You should also add a slug (using md5, random, timestamp, or svn revision) in the resource url to force the client to load the resources e.g. /script/my_script?ver=XXX.

share|improve this answer

Have you tried emptying your browsers cache? Could also be some other cache along the way, if you are on a cooperate network,for example.

share|improve this answer

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.