S3に保存された画像と、その場でサイズを変更するラムダ関数があります。それをしている間CacheControl: 'max-age=31536000'
、サイズ変更された画像に追加し、Cache-Control ヘッダーも追加します。
.then(buffer => {
// save the resized object to S3 bucket with appropriate object key.
S3.putObject({
Body: buffer,
Bucket: BUCKET,
ContentType: 'image/jpg',
CacheControl: 'max-age=31536000',
Key: `uploads/${key}`,
})
// generate a binary response with resized image
response.status = 200
response.body = buffer.toString('base64')
response.bodyEncoding = 'base64'
response.headers['content-type'] = [{ key: 'Content-Type', value: 'image/jpg' }]
response.headers['cache-control'] = [{ key: 'Cache-Control', value: 'public, max-age=31536000' }]
callback(null, response)
})
サムネイルが既に生成されている場合は、次のようにします。
if (!response.headers['cache-control']) {
response.headers['cache-control'] = [{ key: 'Cache-Control', value: 'public, max-age=31536000' }]
}
callback(null, response)
Cloudfront ディストリビューションでは、次の設定をしています。
- 選択したリクエスト ヘッダーに基づくキャッシュ: なし
- オブジェクトのキャッシュ: オリジン キャッシュ ヘッダーを使用する
ラムダは正常に動作しますが、devtools を見ると、Chrome が画像をキャッシュしていないようです。ここに私が得る情報があります:
General
Request URL: https://aws.mydomain.com/478/dd123cd5-1636-47d0-b756-e6c6e9cb28c0/normal/pic.jpg
Request Method: GET
Status Code: 200
Remote Address: 52.84.31.149:443
Referrer Policy: no-referrer-when-downgrade
age: 382
Response Headers
content-length: 49192
content-type: image/jpg
date: Thu, 09 May 2019 20:41:42 GMT
server: AmazonS3
status: 200
via: 1.1 261e801dca9c54ff576f39f96d80ede5.cloudfront.net (CloudFront)
x-amz-cf-id: ZlheiBoNDuYDeuvZo0jBP6Zjpge5AonPGlCo_N2pHhHdGwV7DorKtA==
x-amz-id-2: xkDxIB0qDJt5KMeHINq7/gaRII6EDBOsL3SlMuhMwJ84M/lak9E/tcRChv7vvYurD+2hYOT8kSI=
x-amz-request-id: CAD9AE1E905BB13A
x-cache: Hit from cloudfront
Request Headers
:authority: aws.mydomain.com
:method: GET
:path: /478/dd123cd5-1636-47d0-b756-e6c6e9cb28c0/normal/pic.jpg
:scheme: https
accept: */*
accept-encoding: gzip, deflate, br
accept-language: en-US,en;q=0.9
user-agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.108 Safari/537.36
Control-Cache が存在しないため、これを理解できません...
ディストリビューション内のすべてのイメージを無効にすると、唯一の変更は x-cache: 'Error from cloudfront' の最初のロード時の値です (ステータス 200 で、イメージは正常にロードされます)。