Skip to content

Commit f96025d

Browse files
committed
fix: wip - fix for caching issues on catch all routes
1 parent d278f66 commit f96025d

File tree

4 files changed

+49
-28
lines changed

4 files changed

+49
-28
lines changed

src/run/handlers/cache.cts

+28-20
Original file line numberDiff line numberDiff line change
@@ -121,11 +121,19 @@ export class NetlifyCacheHandler implements CacheHandlerForMultipleVersions {
121121
}
122122

123123
private captureCacheTags(cacheValue: NetlifyIncrementalCacheValue | null, key: string) {
124+
const requestContext = getRequestContext()
125+
124126
if (!cacheValue) {
127+
if (requestContext?.responseCacheTags) {
128+
const cacheTags = [`_N_T_${key === '/index' ? '/' : encodeURI(key)}`]
129+
requestContext.responseCacheTags = cacheTags
130+
131+
console.log('cache tags set:', cacheTags)
132+
}
133+
125134
return
126135
}
127136

128-
const requestContext = getRequestContext()
129137
// Bail if we can't get request context
130138
if (!requestContext) {
131139
return
@@ -393,28 +401,28 @@ export class NetlifyCacheHandler implements CacheHandlerForMultipleVersions {
393401

394402
await this.cacheStore.set(key, { lastModified, value }, 'blobStore.set')
395403

396-
if (data?.kind === 'PAGE' || data?.kind === 'PAGES') {
397-
const requestContext = getRequestContext()
398-
if (requestContext?.didPagesRouterOnDemandRevalidate) {
399-
// encode here to deal with non ASCII characters in the key
400-
const tag = `_N_T_${key === '/index' ? '/' : encodeURI(key)}`
401-
const tags = tag.split(/,|%2c/gi).filter(Boolean)
402-
403-
if (tags.length === 0) {
404-
return
405-
}
404+
// if (data?.kind === 'PAGE' || data?.kind === 'PAGES') {
405+
const requestContext = getRequestContext()
406+
if (requestContext?.didPagesRouterOnDemandRevalidate) {
407+
// encode here to deal with non ASCII characters in the key
408+
const tag = `_N_T_${key === '/index' ? '/' : encodeURI(key)}`
409+
const tags = tag.split(/,|%2c/gi).filter(Boolean)
406410

407-
getLogger().debug(`Purging CDN cache for: [${tag}]`)
408-
requestContext.trackBackgroundWork(
409-
purgeCache({ tags, userAgent: purgeCacheUserAgent }).catch((error) => {
410-
// TODO: add reporting here
411-
getLogger()
412-
.withError(error)
413-
.error(`[NetlifyCacheHandler]: Purging the cache for tag ${tag} failed`)
414-
}),
415-
)
411+
if (tags.length === 0) {
412+
return
416413
}
414+
415+
getLogger().debug(`Purging CDN cache for: [${tag}]`)
416+
requestContext.trackBackgroundWork(
417+
purgeCache({ tags, userAgent: purgeCacheUserAgent }).catch((error) => {
418+
// TODO: add reporting here
419+
getLogger()
420+
.withError(error)
421+
.error(`[NetlifyCacheHandler]: Purging the cache for tag ${tag} failed`)
422+
}),
423+
)
417424
}
425+
// }
418426
})
419427
}
420428

src/run/handlers/server.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ export default async (
132132
}
133133

134134
setCacheControlHeaders(response, request, requestContext, nextConfig)
135-
setCacheTagsHeaders(response.headers, requestContext)
135+
setCacheTagsHeaders(response.headers, request, requestContext)
136136
setVaryHeaders(response.headers, request, nextConfig)
137137
setCacheStatusHeader(response.headers, nextCache)
138138

src/run/headers.ts

+18-6
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,6 @@ export const setCacheControlHeaders = (
220220
.log('NetlifyHeadersHandler.trailingSlashRedirect')
221221
}
222222

223-
const cacheControl = headers.get('cache-control')
224223
if (status === 404) {
225224
if (request.url.endsWith('.php')) {
226225
// temporary CDN Cache Control handling for bot probes on PHP files
@@ -241,6 +240,8 @@ export const setCacheControlHeaders = (
241240
}
242241
}
243242

243+
const cacheControl = headers.get('cache-control')
244+
244245
if (
245246
cacheControl !== null &&
246247
['GET', 'HEAD'].includes(request.method) &&
@@ -281,13 +282,24 @@ export const setCacheControlHeaders = (
281282
}
282283
}
283284

284-
export const setCacheTagsHeaders = (headers: Headers, requestContext: RequestContext) => {
285-
if (
286-
requestContext.responseCacheTags &&
287-
(headers.has('cache-control') || headers.has('netlify-cdn-cache-control'))
288-
) {
285+
export const setCacheTagsHeaders = (
286+
headers: Headers,
287+
request: Request,
288+
requestContext: RequestContext,
289+
) => {
290+
if (!headers.has('cache-control') && !headers.has('netlify-cdn-cache-control')) {
291+
return
292+
}
293+
294+
if (requestContext.responseCacheTags) {
289295
headers.set('netlify-cache-tag', requestContext.responseCacheTags.join(','))
296+
return
290297
}
298+
299+
const key = new URL(request.url).pathname
300+
const cacheTag = `_N_T_${key === '/index' ? '/' : encodeURI(key)}`
301+
console.log('setCacheTagsHeaders', 'netlify-cache-tag', key)
302+
headers.set('netlify-cache-tag', cacheTag)
291303
}
292304

293305
/**

src/run/next.cts

+2-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,8 @@ export async function getMockedRequestHandler(...args: Parameters<typeof getRequ
9999
if (!file.isFallback) {
100100
const requestContext = getRequestContext()
101101
if (requestContext) {
102-
requestContext.usedFsReadForNonFallback = true
102+
// Causing caching for too many requests (e.g. api routes)
103+
// requestContext.usedFsReadForNonFallback = true
103104
}
104105
}
105106

0 commit comments

Comments
 (0)