Reputation: 4113
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?
Upvotes: 0
Views: 116
Reputation: 754
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.
Upvotes: 0
Reputation: 31928
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
.
Upvotes: 3