国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

ElasticSearch - API Conventions

ghnor / 2399人閱讀

摘要:例如實際調用特殊字符要報文體省略轉化為只獲取字段且中字段,按中字段降序排序

Date math support in index names

Limiting the number of indices that are searched reduces the load on the cluster and improves execution performance.

form:

 

例如:
GET /,,/_search
實際調用特殊字符要encode:GET /%3Clogstash-%7Bnow%2Fd-2d%7D%3E%2C%3Clogstash-%7Bnow%2Fd-1d%7D%3E%2C%3Clogstash-%7Bnow%2Fd%7D%3E/_search
報文體省略

Common options

appending ?pretty=true to any request made, the JSON returned will be pretty formatted (use it for debugging only!).

"size_in_bytes": 1024 轉化為 "size_in_bytes": "1kb" by adding ?human=true to the query string.

Response Filtering

GET /_cluster/state?filter_path=metadata.indices.*.stat*
Responds:
{
  "metadata" : {
    "indices" : {
      "twitter": {"state": "open"}
    }
  }
}   

the ** wildcard can be used to include fields without knowing the exact path of the field.

exclude one or more fields by prefixing the filter with the char -:

GET /_count?filter_path=-_shards 

both inclusive and exclusive filters can be combined in the same expression.

raw value of a field, like the _source field.

# 只獲取hits.hits._source字段且_source中title字段,按_source中rating字段降序排序
GET /_search?filter_path=hits.hits._source&_source=title&sort=rating:desc

Enabling stack traces: url append error_trace=true

URL-based access control

elasticsearch.yml file:

rest.action.multi.allow_explicit_index: false

Elasticsearch will reject requests that have an explicit index specified in the request body.

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/68460.html

相關文章

  • JavaScript Style Guide and Coding Conventions

    摘要:點擊查看原文總結一下變量名函數名用駝峰,以小寫字母開頭逗號和操作符之后要有空格縮進為個空格其實現在有很多是個的語句的結尾有分號復合語句左花括號在首行末尾,且之前有空格右花括號另起一行,之前沒有空格結尾沒有括號對象左花括號不換行,之前有空格 點擊查看原文 總結一下: 變量名函數名用駝峰,以小寫字母開頭 逗號和操作符之后要有空格 縮進為4個空格(其實現在有很多是2個的 nodejs ...

    ormsf 評論0 收藏0
  • 從原理層面掌握@SessionAttribute的使用【一起學Spring MVC】

    摘要:見名之意,它是處理器,也就是解析這個注解的核心。管理通過標注了的特定會話屬性,存儲最終是委托了來實現。只會清楚注解放進去的,并不清除放進去的它的唯一實現類實現也簡單。在更新時,模型屬性與會話同步,如果缺少,還將添加屬性。 每篇一句 不是你當上了火影大家就認可你,而是大家都認可你才能當上火影 前言 該注解顧名思義,作用是將Model中的屬性同步到session會話當中,方便在下一次請求中...

    ARGUS 評論0 收藏0

發表評論

0條評論

最新活動
閱讀需要支付1元查看
<