How to opt out of fetch caching #63988
Replies: 3 comments
-
Hi, You need to specify a custom fetch in the Supabase client. Something like: import { createClient } from '@supabase/supabase-js'
function fetchWithoutCache(url, options) {
return fetch(url, {...options, cache: 'no-store' })
}
const supabase = createClient('https://xyzcompany.supabase.co', 'public-anon-key', {
global: { fetch: fetchWithoutCache }
}) |
Beta Was this translation helpful? Give feedback.
-
To disable the caching mechanism in Next.js, you can set the Users Component
Single User Component
Exporting a
For further information: https://supabase.com/blog/fetching-and-caching-supabase-data-in-next-js-server-components |
Beta Was this translation helpful? Give feedback.
-
Why isn't there a global property in |
Beta Was this translation helpful? Give feedback.
-
Summary
We use a 3rd party library, think supabase, to fetch some data. Although our page is cached by next's fetch patching, which means it doesn't update when we add new users.
If we add a new user on the frontend and use
revalidate('/users-count')
then it's fine, although the users are often added into the database in other ways.Is there a way to opt out or configure the next fetch patch to only cache for 15s or so on this?
Additional information
Beta Was this translation helpful? Give feedback.
All reactions