Skip to content

Commit f988a50

Browse files
committed
doc: Use unstable_cache for dependents caching
1 parent 0db86bb commit f988a50

File tree

4 files changed

+13
-420
lines changed

4 files changed

+13
-420
lines changed

packages/docs/src/app/(pages)/_landing/bundle-size.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ export async function BundleSize() {
1010
return prettyBytes(size)
1111
} catch (error) {
1212
console.error(error)
13-
return 'less than 4KB'
13+
return 'less than 5KB'
1414
}
1515
}

packages/docs/src/app/(pages)/_landing/dependents/crawler.ts

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import * as cheerio from 'cheerio'
2+
import { unstable_cache } from 'next/cache'
23

34
enum PackageId {
45
nuqs = 'UGFja2FnZS00MjczNzAxNTA5',
@@ -12,7 +13,15 @@ export type Result = {
1213
avatarID: string
1314
}
1415

15-
export async function crawlDependents() {
16+
export const crawlDependents = unstable_cache(
17+
_crawlDependents,
18+
['crawlDependents'],
19+
{
20+
revalidate: 86_400
21+
}
22+
)
23+
24+
async function _crawlDependents() {
1625
const allResults: Result[] = []
1726
let url = `https://github.com/47ng/nuqs/network/dependents?package_id=${PackageId.nuqs}`
1827
while (true) {

0 commit comments

Comments
 (0)