GithubHelp home page GithubHelp logo

Comments (4)

GoogleCodeExporter avatar GoogleCodeExporter commented on July 28, 2024
The differences is that in the incr or decr use an other decodeLong algorithm 
than
the get method.

See here

that incr/decr : rv.set(new Long(s.isSuccess()?s.getMessage():"-1"))

get : public long decodeLong(byte[] b) {
        long rv=0;
        for(final byte i : b) {
            rv = (rv << 8) | (i<0?256+i:i);
        }
        return rv;
    }

Original comment by [email protected] on 12 Dec 2008 at 2:47

from spymemcached.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 28, 2024
If I understand your concern correctly, this is by spec.

The stored value *must* be a string representation for these operations, not a
numeric one.  incr with 0 will give you a numeric result, otherwise, you should
expect a string result.

If this isn't what you're talking about, please reopen.

Original comment by [email protected] on 19 Dec 2008 at 4:00

  • Changed state: Invalid

from spymemcached.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 28, 2024
Okay,

but I understand that but should the get command also return the current counter
value (but this doesn't work) incr store a string and translated for me back to 
a
Long but the get command interpret the stored string as a Long and use the 
decodeLong
method to translated it into a long value.

Is there no way to get the current counter value?

Original comment by [email protected] on 21 Dec 2008 at 4:55

from spymemcached.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 28, 2024
Yes, you incr 0 to get the current value.

Or you do a get and get it back in string form and convert it.

It's unfortunate, but it'd be very complicated to do it a different way (the 
server
would have to know how these values are used, which it doesn't currently except
during incr and decr calls).

Original comment by [email protected] on 22 Dec 2008 at 4:18

from spymemcached.

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.