“Redis Nodejs” Ответ

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

Ответы похожие на “Redis Nodejs”

Вопросы похожие на “Redis Nodejs”

Больше похожих ответов на “Redis Nodejs” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования