RedisJSON/redisjson-py

JSON.MGET list of keys argument not supported

dipenpatel235 opened this issue · 3 comments

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

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 ;)

Cool - closing this issue.