How to do pipelining with RedisJSON (node's iorejson)?

1.4k Views Asked by At

I have been working with RedisJSON for a few days and I couldn't find any information on how to use pipelining with node's 'iorejson' package.

Can somebody point me in the direction if used?

1

There are 1 best solutions below

8
On

It looks iorejson is not maintained, I would suggest you move to node-redis or ioredis

with node-redis:

// npm install redis

import { createClient } from 'redis';

const client = createClient();
client.on('error', err => console.error('Redis Client Error', err));

await client.connect();

const replies = await client.multi()
  .json.set('key', { field: 'value' })
  .json.get('key', '$')
  .exec();

with ioredis:

// npm install ioredis

import Redis from 'ioredis';

const client = new Redis();
client.on('error', err => console.error('Redis Client Error', err));

await client.connect();

const replies = await client.multi()
  .call('JSON.SET', 'key', JSON.stringify({ field: 'value' }))
  .call('JSON.GET', 'key', '$')
  .exec();