Dedupe Plugin
Dedupe Plugin prevents redundant requests by deduplicating similar requests, reducing the number of requests sent to the server.
Overview
import { DedupeLinkPlugin } from '@orpc/client/plugins'
const link = new RPCLink({
plugins: [
new DedupeLinkPlugin({
groups: [
{
condition: () => true,
context: {}, // Context used for the rest of the request lifecycle
},
],
}),
],
})INFO
The link can be any supported oRPC link, such as RPCLink, OpenAPILink, or a custom one.
Filter
By default, the plugin deduplicates only GET requests. You can customize this behavior by providing a filter function.
const link = new RPCLink({
plugins: [
new DedupeLinkPlugin({
filter: ({ request }) => request.method === 'GET',
groups: [
{
condition: () => true,
context: {},
},
],
}),
],
})WARNING
If you are using RPC Link, you might need to customize the request method because it defaults to POST.
TIP
If your application does not need to run multiple mutation requests in parallel within the same call stack, you can expand the filter to deduplicate all request types. This can also help prevent duplicate mutation requests when users click actions too quickly.
Groups
Only requests in the same group are deduplicated together. Each group also defines a context, as described in client context.
The following example deduplicates requests by cache policy:
interface ClientContext {
cache?: RequestCache
}
const link = new RPCLink<ClientContext>({
method: ({ context }) => {
if (context?.cache) {
return 'GET'
}
return 'POST'
},
plugins: [
new DedupeLinkPlugin({
groups: [
{
condition: ({ context }) => context?.cache === 'force-cache',
context: { // used for the rest of the request lifecycle
cache: 'force-cache',
},
},
{ // Fallback for all other requests. Keep this last.
condition: () => true,
context: {},
},
],
}),
],
fetch: (url, init, { context }) => globalThis.fetch(url, {
...init,
cache: context?.cache,
}),
})Now, calls made with cache = 'force-cache' use that cache setting whether they are deduplicated or sent individually.
Learn More
For implementation details, see the source code.

