Giter Club home page Giter Club logo

Comments (4)

mitsuhiko avatar mitsuhiko commented on May 29, 2024

What would be possible would be to internally automatically use MGET when it makes sense. My tests however did not indicate that MGET would be any more performant than pipelined GET.

from rb.

fengsp avatar fengsp commented on May 29, 2024

MGET would be one simpler and handier API. Of course everyone could also do it like this:

def mget(keys):
    results = []
    with cluster.map() as client:  # Assume internally use MGET and assume it is faster
        for key in keys:
            results.append(client.get(key))
    return map(lambda p: p.value, results)

Well, to keep the library clean, you are right :)

from rb.

mitsuhiko avatar mitsuhiko commented on May 29, 2024

So I implemented this in two independent layers now.

First of all multiple GET and SET will internally be auto merged into MGET, MSET on the pipeline level. Regardless of if you are using .get or .mget. Secondly promise based clients (like the mapping one) will have an emulated mget / mset command that internally issues multiple get/set calls.

from rb.

fengsp avatar fengsp commented on May 29, 2024

👍

from rb.

Related Issues (11)

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.