react-code-dataset / next.js /test /e2e /app-dir /app-static /pages /api /unstable-cache-node.js
Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { unstable_cache } from 'next/cache'
export default async function handler(req, res) {
const data = await unstable_cache(async () => {
return {
random: Math.random(),
}
})()
res.json({
now: Date.now(),
data,
})
}