nicolasff / webdis

A Redis HTTP interface with JSON output
https://webd.is
BSD 2-Clause "Simplified" License
2.84k stars 304 forks source link

Any way to GET multiple values in a single call? #105

Closed penguinpowernz closed 10 years ago

penguinpowernz commented 10 years ago

Is there any way to do this? I want to do something like this:

/GET/key1/key2/key3

And get back something like this:

{
  "key1": "stuff",
  "key2": "stuff",
  "key3": "stuff"
}
nicolasff commented 10 years ago

You can use MGET to achieve this.

penguinpowernz commented 10 years ago

Oh yay! Thanks for that! :)