Cache issue
I'm trying to make a simple list view, fetching data from db but when i build the project the page become static and doesn't update.
I tired to wrap db.insert(habit).values(data).execute() into unstale_cache(() => {}, [], {tags: ['habits']}) and call revalidateTag("habits") but even in that case the page still didn't update.
Any suggestions?
2 Replies
Does refreshing help?
Which nextjs version are you on?
Your createhabbit is the place where you want to mark existing data as dirty. On the page you want to refresh/reload the data after you updated the list (or update with what the server action returns)
1. Wrap
select
in unstale_cache
, not insert
. Insert should revalidateTag
but selecting is what should actually be cached.
2. Have you tried adding export const dynamic = 'force-dynamic'
above the page? This will prevent static generation of the page. Your data cache should still be used fine.