feat: cache getCollection()
calls in production (#6503)
* feat: cache getCollection() in prod * chore: changeset
This commit is contained in:
parent
c44aa15534
commit
f6eddffa04
2 changed files with 34 additions and 20 deletions
5
.changeset/nasty-cougars-double.md
Normal file
5
.changeset/nasty-cougars-double.md
Normal file
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
'astro': patch
|
||||
---
|
||||
|
||||
Add caching to `getCollection()` queries for faster SSG production builds
|
|
@ -38,6 +38,7 @@ export function createCollectionToGlobResultMap({
|
|||
return collectionToGlobResultMap;
|
||||
}
|
||||
|
||||
const cacheEntriesByCollection = new Map<string, any[]>();
|
||||
export function createGetCollection({
|
||||
collectionToEntryMap,
|
||||
collectionToRenderEntryMap,
|
||||
|
@ -47,27 +48,35 @@ export function createGetCollection({
|
|||
}) {
|
||||
return async function getCollection(collection: string, filter?: (entry: any) => unknown) {
|
||||
const lazyImports = Object.values(collectionToEntryMap[collection] ?? {});
|
||||
const entries = Promise.all(
|
||||
lazyImports.map(async (lazyImport) => {
|
||||
const entry = await lazyImport();
|
||||
return {
|
||||
id: entry.id,
|
||||
slug: entry.slug,
|
||||
body: entry.body,
|
||||
collection: entry.collection,
|
||||
data: entry.data,
|
||||
async render() {
|
||||
return render({
|
||||
collection: entry.collection,
|
||||
id: entry.id,
|
||||
collectionToRenderEntryMap,
|
||||
});
|
||||
},
|
||||
};
|
||||
})
|
||||
);
|
||||
let entries: any[] = [];
|
||||
// Cache `getCollection()` calls in production only
|
||||
// prevents stale cache in development
|
||||
if (import.meta.env.PROD && cacheEntriesByCollection.has(collection)) {
|
||||
entries = cacheEntriesByCollection.get(collection)!;
|
||||
} else {
|
||||
entries = await Promise.all(
|
||||
lazyImports.map(async (lazyImport) => {
|
||||
const entry = await lazyImport();
|
||||
return {
|
||||
id: entry.id,
|
||||
slug: entry.slug,
|
||||
body: entry.body,
|
||||
collection: entry.collection,
|
||||
data: entry.data,
|
||||
async render() {
|
||||
return render({
|
||||
collection: entry.collection,
|
||||
id: entry.id,
|
||||
collectionToRenderEntryMap,
|
||||
});
|
||||
},
|
||||
};
|
||||
})
|
||||
);
|
||||
cacheEntriesByCollection.set(collection, entries);
|
||||
}
|
||||
if (typeof filter === 'function') {
|
||||
return (await entries).filter(filter);
|
||||
return entries.filter(filter);
|
||||
} else {
|
||||
return entries;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue