Skip to content

Instantly share code, notes, and snippets.

@Prosen-Ghosh
Created January 22, 2023 14:29
Show Gist options
  • Save Prosen-Ghosh/149763870ec6beb9c80538b6ceee117e to your computer and use it in GitHub Desktop.
Save Prosen-Ghosh/149763870ec6beb9c80538b6ceee117e to your computer and use it in GitHub Desktop.
const Redis = require("ioredis");
const redis = new Redis();
// Fetch data from database
const data = await fetchDataFromDb();
// set cache data for page
redis.set("page:home", JSON.stringify(data));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment