Giter Site home page Giter Site logo

Comments (3)

dasoncheng avatar dasoncheng commented on July 4, 2024 1

@AlphaBs Thank you for your feedback, the version switch will be completed this month and the interface will be resolved and optimized by then

from tedis.

dasoncheng avatar dasoncheng commented on July 4, 2024

The current version does not support the kind of call method you said, you can refer to the documentation about the use of mget. tedis later upgrades will add this overload method, you can use the new feature of es' Spread syntax to implement the requirements.

const keys = ["record1", "record2", "record3"]
const records = await tedis.mget(...keys)

from tedis.

AlphaBs avatar AlphaBs commented on July 4, 2024

The current version does not support the kind of call method you said, you can refer to the documentation about the use of mget. tedis later upgrades will add this overload method, you can use the new feature of es' Spread syntax to implement the requirements.

const keys = ["record1", "record2", "record3"]
const records = await tedis.mget(...keys)

This codes does not work in TypeScript:

    const clientHashes: string[] = clientFiles.map(f => f.hash);
    let serverPaths: string[];

    // Error: ts(2556) A spread argument must either have a tuple type or be passed to a rest parameter
    serverPaths = await db.hmget(filesKey, ...clientHashes);

    // I should write code like this: 
    if (clientHashes.length == 1)
        serverPaths = await db.hmget(filesKey, clientHashes[0]);
    else if (clientHashes.length > 1)
        serverPaths = await db.hmget(filesKey, clientHashes[0], ...clientHashes.slice(1));

Why hmget function has field parameter?

  public hmget(key: string, field: string, ...fields: string[]) {
    return this.command<Array<string | null>>("HMGET", key, field, ...fields);
  }

=>

  public hmget(key: string, ...fields: string[]) {
    return this.command<Array<string | null>>("HMGET", key, ...fields);
  }

I think above two codes is same. Is there any compatibility problem?

from tedis.

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.