import urllib.request response = urllib.request.urlopen("http://www.python.org") print(response.status) #获取响应码 print(response.getheaders()) #获取响应头信息 p... ...
分类:
编程语言 时间:
2018-11-22 00:10:42
阅读次数:
213
返回的串 {"took":278,"timed_out":false,"_shards":{"total":21,"successful":21,"failed":0},"hits":{"total":3,"max_score":6.685612,"hits":[{"_index":"logstas ...
分类:
其他好文 时间:
2018-11-19 11:07:51
阅读次数:
179
一 空搜索 搜索API的最基础的形式是没有指定任何查询的空搜索 ,它简单地返回集群中所有索引下的所有文档: 示例 GET 127.0.0.1:9200/_search 响应 我们可以看到响应中的hits段,total代表了es中总共查询到的文档个数,hits里的hits部分则是具体文档的内容,包括文 ...
分类:
其他好文 时间:
2018-11-16 10:30:52
阅读次数:
224
term、terms查询 term query会去倒排索引中寻找确切的term,它并不知道分词器的存在,这种查询适合keyword、numeric、date等明确值的 term:查询某个字段里含有某个关键词的文档 terms:查询某个字段里含有多个关键词的文档 match查询 match query ...
分类:
其他好文 时间:
2018-11-14 17:18:26
阅读次数:
572
Reports Summary report:运行获取的性能总结性报告。 一、Statistics Summary: 1.Maximum Running Vusers:用的最多的虚拟用户数。 2.Total Throughput(bytes):总的吞吐量是多少个字节。从服务器端响应给客户端的流量大小 ...
分类:
其他好文 时间:
2018-11-07 14:11:21
阅读次数:
269
1.搜索结果中的一些词的含义 took:整个搜索请求花费了多少毫秒 hits.total:本次搜索,返回了几条结果 hits.max_score:本次搜索的所有结果中,最大的相关度分数是多少,每一条document对于search的相关度,越相关,_score分数越大,排位越靠前 hits.hits ...
分类:
其他好文 时间:
2018-10-19 14:12:35
阅读次数:
189
一次查询多个索引数据 es里可以这样写 GET 索引1,索引2,索引3/_search 也可以这样 给索引创建别名,多个索引可以使用一个别名 或者 删除别名 java查询多个索引 ...
分类:
编程语言 时间:
2018-10-06 13:25:07
阅读次数:
743
转: "http://www.codingsoho.com/zh/blog/component hitcount/" hit counter是用来计数模型对象的访问次数的。 Django hit counter application that tracks the number of hits/v ...
分类:
其他好文 时间:
2018-10-01 23:15:15
阅读次数:
246
Returns any documents that match with at least one or more of the provided terms. The terms are not analyzed and thus must match exactly. The number o ...
分类:
其他好文 时间:
2018-09-28 19:10:41
阅读次数:
330