I posted this on Discussions but no one answered this so hopefully someone here could help me.
https://github.com/vercel/next.js/discussions/60704
unstable_cache is supposed to act the same as Data Cache but it's updated every build on Vercel. Tried the same function that is wrapped in it with a route handler won't be updated unless manually revalidated. Is this intended?
PS: my problem is that unstable_cache won't be cached across deployments and it fetches twice always
GitHub
Repo: https://github.com/roxizhauk/test-unstable-cache The data cached by unstable_cache is updated every build on Vercel, querying to my database on PlanetScale TWICE (always). Is this an expected...