admin管理员组文章数量:1435510
I have JSON structure in REDIS that looks something like:
{
"name": "value"
"subtable": {
"sub1":{
"subtime": 123456
}
"sub2":{
"subtime": 999999
}
}
}
I tried to build me schema like:
addNumberField($.subtable[*].subtime,1).as("subtime")
but off course this is for an array, not a hash.
Can someone point me to documentation of doing this thru a hash?
My query looks like:
Query().addFilter(new Query.NumericFilter("subtime",999998,999999)
TIA
Tried many things, and got pretty lost.
本文标签: javaJEDISQuery nested tableshowStack Overflow
版权声明:本文标题:java - JEDIS, Query nested tables, how? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1736197557a1910748.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论