最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

java - JEDIS, Query nested tables, how? - Stack Overflow

programmeradmin10浏览0评论

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.

发布评论

评论列表(0)

  1. 暂无评论