await redis.mset({
key1: 1,
key2: "hello",
key3: { a: 1, b: "hello" },
});
Set multiple keys in one go.
await redis.mset({
key1: 1,
key2: "hello",
key3: { a: 1, b: "hello" },
});
await redis.mset({
key1: 1,
key2: "hello",
key3: { a: 1, b: "hello" },
});
Was this page helpful?