第34 节 初识搜索引擎_分页搜索以及deep paging性能问题深度图解揭秘

 

 

1、讲解如何使用es进行分页搜索的语法

 

size,from

 

GET /_search?size=10

GET /_search?size=10&from=0

GET /_search?size=10&from=20

 

分页的上机实验

 

GET /test_index/test_type/_search

 

"hits": {

    "total": 9,

    "max_score": 1,

 

我们假设将这9条数据分成3页,每一页是3条数据,来实验一下这个分页搜索的效果

 

GET /test_index/test_type/_search?from=0&size=3

 

{

  "took": 2,

  "timed_out": false,

  "_shards": {

    "total": 5,

    "successful": 5,

    "failed": 0

  },

  "hits": {

    "total": 9,

    "max_score": 1,

    "hits": [

      {

        "_index": "test_index",

        "_type": "test_type",

        "_id": "8",

        "_score": 1,

        "_source": {

          "test_field": "test client 2"

        }

      },

      {

        "_index": "test_index",

        "_type": "test_type",

        "_id": "6",

        "_score": 1,

        "_source": {

          "test_field": "tes test"

        }

      },

      {

        "_index": "test_index",

        "_type": "test_type",

        "_id": "4",

        "_score": 1,

        "_source": {

          "test_field": "test4"

        }

      }

    ]

  }

}

 

第一页:id=8,6,4

 

GET /test_index/test_type/_search?from=3&size=3

 

第二页:id=2,自动生成,7

 

GET /test_index/test_type/_search?from=6&size=3

 

第三页:id=1,11,3

 

2、什么是deep paging问题?为什么会产生这个问题,它的底层原理是什么?

 

deep paging性能问题,以及原理深度图解揭秘,很高级的知识点

 

 

 

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值