Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

187
Vistas
Next.js manually revalidate cache

I'm using file-based data fetching to show blog posts. I know we can revalidate the cache with revalidate: seconds property but the problem is once a post written it usually won't change. Instead of revalidating the cache with seconds, is there any way to revalidate manually? So I'd like to have a system to revalidate the cache when a file in posts folder changes.

import path from 'path'
import { promises as fs } from 'fs'

function Blog ({ posts }) {
  return (
    <ul>
      {posts.map((post, key) => (
        <li key={key}>
          <h3>{post.filename}</h3>
          <p>{post.fileContent}</p>
        </li>
      ))}
    </ul>
  )
}

export async function getStaticProps () {
  const postsDirectory = path.join(process.cwd(), 'posts')
  const filenames = await fs.readdir(postsDirectory)

  const posts = filenames.map(async (filename) => {
    const filePath = path.join(postsDirectory, filename)
    const fileContent = await fs.readFile(filePath, 'utf8')
    return { filename, fileContent }
  })

  return {
    props: {
      posts: await Promise.all(posts)
    },
    revalidate: 60
  }
}

export default Blog

about 4 years ago · Juan Pablo Isaza
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda