Coder Social home page Coder Social logo

Comments (3)

leibale avatar leibale commented on July 21, 2024 1

I'm guessing you are using v4.x? for this version the only way to solve it is to use .sendCommand directly:

await client.sendCommand(['SCAN', '0', 'MATCH', '*', 'COUNT', '1000']);

async function* scanIterator() {
  let cursor = '0';
  do {
    const reply = await this.sendCommand(['SCAN', cursor, 'MATCH', '*', 'COUNT', '1000']);
    cursor = reply[0];
    yield reply[1];
  } while (cursor !== '0');
}

for await (const chunk of scanIterator()) {
  // ...
}

this is already fixed in v5 which you can try using @redis/client@next.

from node-redis.

holopekochan avatar holopekochan commented on July 21, 2024

Found a configuration 'string_numbers' in the v2.6.0 documentation. However, it does not seem to have that option in v4. the scan operation is still returning a number instead of a "string number". The cursor is still converted to 9286422431637965000
Tried with the small code

const redis = require('redis')
const client = redis.createClient({
    url: <my_redis_url>,
    string_numbers: true
}); 

const test = async () => {
     try { 
        await client.connect() 
        const reply = await client.scan("0", 'MATCH', '*' , 'COUNT', '1000')
        console.log(reply)
     } catch (err) {
        console.error(err)
     }
}
test()

from node-redis.

holopekochan avatar holopekochan commented on July 21, 2024
await client.sendCommand(['SCAN', '0', 'MATCH', '*', 'COUNT', '1000']);

Yes, I am using v4.x.
It works when using sendCommand. I will try v5 next.
Thank you

from node-redis.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.