Inspect a value from the GUI
Fri, 05/25/2012 - 17:19
Hi,
I have two processes accessing the same instance of Membase and, bizarrely, getting different values out for the same key. I am fairly confident this is not a bug in Membase, but it would be useful if I could inspect it, via an authoritative interface, to see which of my processes is the misbehaving one.
Is there a GUI or CLI-based way to show the value for a key in the Membase server?
Thanks,
Tom
There is not through the GUI.
You can use telnet and memcached protocol through the port associated with the bucket if set up that way. For example, with the default bucket on port 11211:
$ telnet localhost 11211
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
set foo 0 0 3
bar
STORED
get foo
VALUE foo 0 3
bar
END