I'm working on a Next.js project and looking to implement in-memory caching for tRPC results, with each tRPC procedure being able to opt-in with a custom TTL. I think tRPC's middleware would be suitable for this purpose. Unfortunately, the current tRPC middleware documentation doesn't seem to cover this specific scenario.
How can a server-side caching middleware in tRPC 10 be implemented?
There's a related discussion on a Github issue for a feature request that allows to do this easily. In the meanwhile, it is still possible to do this by implementing custom logic.
The example below uses
node-cache
as an in-memory caching approach. It's been tested with tRPC 10.43.3. Procedures listed incachedProcedures
are configured to opt into the cache.A few remarks:
query
types, notmutation
orsubscription
middlewareMarker
is a somewhat hacky fix, as any middleware return must include amarker
structuredClone
is only available in Node 17+, if this is not an option a different deep cloning approach is required