最終変更、有効期限、キャッシュ制御ヘッダーを送信しているアプリエンジンアプリケーションのブラウザで画像をキャッシュすることに少し問題がありますが、画像は毎回サーバーから読み込まれます。コードのヘッダー部分は次のとおりです。
response ['Content-Type'] ='image / jpg'
response ['Last-Modified'] = current_time.strftime('%a、%d%b%Y%H:%M:%S GMT')
response ['Expires'] = current_time + timedelta(days = 30)
response ['Cache-Control'] ='public、max-age = 2592000'