Skip to content

Instantly share code, notes, and snippets.

@Prosen-Ghosh
Created January 22, 2023 12:56
Show Gist options
  • Save Prosen-Ghosh/2b1678f6e0420b0071d024b8e21fa8e6 to your computer and use it in GitHub Desktop.
Save Prosen-Ghosh/2b1678f6e0420b0071d024b8e21fa8e6 to your computer and use it in GitHub Desktop.
const Redis = require("ioredis");
const redis = new Redis();
// set session data for user
redis.set("session:user1", JSON.stringify({
username: "user1",
email: "user1@example.com"
}));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment