JSON.MGET list of keys argument not supported
dipenpatel235 opened this issue · 3 comments
dipenpatel235 commented
Hello..
I am using python and i want to pass list of keys to JSON.MGET but that is not working.
so i need to prapare from list to sting and then i need to prepare command and much more...
so its look like difficult.
So can u please fix it or give me sample example to how to implement JSON.MGET with python?
Thanks
itamarhaber commented
Hello @dipenpatel235
Python 2.7.10 (default, Aug 17 2018, 17:41:52)
Type "copyright", "credits" or "license" for more information.
IPython 5.8.0 -- An enhanced Interactive Python.
? -> Introduction and overview of IPython's features.
%quickref -> Quick reference.
help -> Python's own help system.
object? -> Details about 'object', use 'object??' for extra details.
In [1]: from rejson import Client, Path
...: rj = Client(host='localhost', port=6379)
In [2]: rj.jsonset('j1', Path.rootPath(), {'foo': 'bar'})
Out[2]: True
In [3]: rj.jsonset('j2', Path.rootPath(), {'foo': 'baz'})
Out[3]: True
In [4]: rj.jsonmget(Path('.foo'), 'j1', 'j2')
Out[4]: [u'bar', u'baz']
In [5]: keys = ['j1', 'j2']
In [6]: rj.jsonmget(Path('.foo'), *keys)
Out[6]: [u'bar', u'baz']
I hope this makes sense ;)
dipenpatel235 commented
Thanks.
Yes it is useful.
…On Tue, Dec 4, 2018, 2:24 AM Itamar Haber ***@***.*** wrote:
Hello @dipenpatel235 <https://github.com/dipenpatel235>
Python 2.7.10 (default, Aug 17 2018, 17:41:52)
Type "copyright", "credits" or "license" for more information.
IPython 5.8.0 -- An enhanced Interactive Python.? -> Introduction and overview of IPython's features.%quickref -> Quick reference.help -> Python's own help system.object? -> Details about 'object', use 'object??' for extra details.
In [1]: from rejson import Client, Path
...: rj = Client(host='localhost', port=6379)
In [2]: rj.jsonset('j1', Path.rootPath(), {'foo': 'bar'})
Out[2]: True
In [3]: rj.jsonset('j2', Path.rootPath(), {'foo': 'baz'})
Out[3]: True
In [4]: rj.jsonmget(Path('.foo'), 'j1', 'j2')
Out[4]: [u'bar', u'baz']
In [5]: keys = ['j1', 'j2']
In [6]: rj.jsonmget(Path('.foo'), *keys)
Out[6]: [u'bar', u'baz']
I hope this makes sense ;)
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#16 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AHwhuVsb3hNi3ggtYSefk9dpyXIOixGhks5u1Y-HgaJpZM4Y_FMy>
.
itamarhaber commented
Cool - closing this issue.