Durga Dutt
Durga Dutt

Reputation: 4113

Google app engine project update

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

Answers (2)

Stefan
Stefan

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

Shay Erlichmen
Shay Erlichmen

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

Related Questions