@@ -4,7 +4,7 @@ description: Type-safe search params on the server
4
4
---
5
5
6
6
<Callout >
7
- This feature is available for Next.js only.
7
+ The ` next/server/cache ` feature is available for Next.js app router only.
8
8
</Callout >
9
9
10
10
If you wish to access the searchParams in a deeply nested Server Component
@@ -20,12 +20,9 @@ to do so in a type-safe manner.
20
20
</Callout >
21
21
22
22
``` ts title="searchParams.ts"
23
- import {
24
- createSearchParamsCache ,
25
- parseAsInteger ,
26
- parseAsString
27
- } from ' nuqs/server'
28
- // Note: import from 'nuqs/server' to avoid the "use client" directive
23
+ import { createSearchParamsCache } from ' nuqs/server/cache'
24
+ import { parseAsInteger , parseAsString } from ' nuqs/server'
25
+ // Note: import parsers from 'nuqs/server' to avoid the "use client" directive
29
26
30
27
export const searchParamsCache = createSearchParamsCache ({
31
28
// List your search param keys and associated parsers here:
@@ -61,17 +58,24 @@ function Results() {
61
58
}
62
59
```
63
60
61
+ <Callout type = " warn" title = " Deprecation notice" >
62
+ The cache feature is also accessible from ` nuqs/server ` in nuqs@^2, but
63
+ will be removed from that import in nuqs@3.0.0.
64
+ Please update your imports to ` nuqs/server/cache ` for a smoother transition.
65
+
66
+ This is to allow non-Next.js server code to use the ` nuqs/server ` import
67
+ without having to install React canary for the ` cache ` function.
68
+ </Callout >
69
+
64
70
The cache will only be valid for the current page render
65
71
(see React's [ ` cache ` ] ( https://react.dev/reference/react/cache ) function).
66
72
67
73
Note: the cache only works for ** server components** , but you may share your
68
74
parser declaration with ` useQueryStates ` for type-safety in client components:
69
75
70
76
``` ts title="searchParams.ts"
71
- import {
72
- parseAsFloat ,
73
- createSearchParamsCache
74
- } from ' nuqs/server'
77
+ import { parseAsFloat } from ' nuqs/server'
78
+ import { createSearchParamsCache } from ' nuqs/server/cache'
75
79
76
80
export const coordinatesParsers = {
77
81
lat: parseAsFloat .withDefault (45.18 ),
0 commit comments