3.谷粒商城product的Elasticsearch索引

##查询product索引
GET product/_search

##建立product索引
PUT product
{
  "mappings": {
    "properties": {
      "skuId":{
        "type": "long"
      },
      "spuId":{
        "type": "keyword"
      },
     "skuTitle":{
       "type": "text",
       "analyzer": "ik_smart"
     },
     "skuPrice":{
       "type": "keyword"
     },
     "skuImg":{
       "type": "keyword",
       "index": false,
       "doc_values": false
     },
     "saleCount":{
       "type": "long"
     },
     "hasStock":{
       "type": "boolean"
     },
     "hotScore":{
       "type": "long"
     },
     "brandId":{
       "type": "long"
     },
     "catalogId":{
       "type": "long"
     },
     "brandName":{
       "type": "keyword",
       "index": false,
       "doc_values": false
     },
     "brandImg":{
       "type": "keyword",
       "index": false,
       "doc_values": false
     },
     "catalogName":{
       "type": "keyword",
       "index": false,
       "doc_values": false
     },
     "attrs":{
       "type": "nested",
       "properties": {
         "attrId":{
           "type":"long"
         },
         "attrName":{
           "type":"keyword",
           "index": false,
           "doc_values": false
         },
         "attrValue":{
            "type": "keyword"
         }
       }
     }
    }
  }
}

你可能感兴趣的:(谷粒商城高级)