Giter Club home page Giter Club logo

Comments (4)

xetorthio avatar xetorthio commented on August 25, 2024

yes, it seems I just missed those in BinaryJedis. Although there is no Binary Protocol in Redis. BinaryJedis is just a class to be able to send byte stream directly instead of strings.
Will fix this ASAP.

from jedis.

xcolwell avatar xcolwell commented on August 25, 2024

Interesting. I thought there was a textual protocol for Redis with a few reserved characters ('\r', '\n', '\0' and ' ') and then there was a binary protocol that used length+byte[] encoding to get around reserved bytes. Just to confirm -- in BinaryJedis, there are no reserved bytes?

from jedis.

xetorthio avatar xetorthio commented on August 25, 2024

no reserved bytes. everything is safe :)
that's the cool new protocol (which is actually the only one supported actually)

from jedis.

xetorthio avatar xetorthio commented on August 25, 2024

it took sometime, but these commands can't go in BinaryJedisCommands. I should change the name of that interface.
Only shard safe commands are allowed there. This mean commands that can be sharded as they operate on a key. The commands you mention don't operate on a key (like select) or operate on many keys.

The way to use them in a sharded environment is to get the shard you need, with getShard("somekey") and than execute these commands on a regular Jedis class.

Thanks anyway for reporting this!

from jedis.

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.