“Redis NodeJs” Kode Jawaban

Redis NodeJs

/* npm install redis */

const redis = require("redis");
const client = redis.createClient();

client.on("error", function(error) {
  console.error(error);
});

client.set("key", "value", redis.print);
client.get("key", redis.print);
joakimjohansson.se

NODEJS REDIS SETEX

async function upsert(table, data) {
  let key = table;
  if (data && data.id) {
    key = key + '_' + data.id;
  }

  client.setex(key, 10, JSON.stringify(data));
  return true;
}
Jeff Le

Jawaban yang mirip dengan “Redis NodeJs”

Pertanyaan yang mirip dengan “Redis NodeJs”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya