上一页 1 2 3 4 5 6 7 8 ··· 21 下一页
摘要: TCP传输的数据大小大于MTU(1500),是什么原因导致的呢? 阅读全文
posted @ 2021-03-08 23:30 ibrake 阅读(3087) 评论(1) 推荐(1)
摘要: 什么是mapping mapping类似于数据库的schema,表结构,主要作用如下: 定义索引中字段的名称 字段的数据类型 倒排索引相关的配置 mapping会把es中的json文档映射成lucene所需要的扁平格式。 字段类型 简单类型 Text / Keyword Date Integer / 阅读全文
posted @ 2021-03-07 23:26 ibrake 阅读(209) 评论(0) 推荐(0)
摘要: Search调用 /index1/_search /index1,index2/_search /index*/_search URI Search get /users/_search?q=is&df=message&sort=post_date:desc&from=3&size=10&timeo 阅读全文
posted @ 2021-03-07 19:06 ibrake 阅读(129) 评论(0) 推荐(0)
摘要: 倒排索引 常规目录:正排索引,文档id到文档内容和单词的关联 附录索引:倒排索引,单词到文档id的关联 倒排索引项组成 文档id 词频,相关性 位置 偏移,开始和结束的位置,用于高亮显示等 elasticsearch的json的每一个字段都有自己的倒排索引 analysis分词 Analyzer是e 阅读全文
posted @ 2021-03-07 17:12 ibrake 阅读(155) 评论(0) 推荐(0)
摘要: Create 不指定id // create document. 自动生成_id POST users/_doc { "user":"Mike", "post_date":"2021-03-07", "message":"this is mike" } 指定id (如果存在则报错) // creat 阅读全文
posted @ 2021-03-07 15:28 ibrake 阅读(78) 评论(0) 推荐(0)
摘要: 一、前置条件 启动es 二、安装kibana 安装 tar xf kibana-7.11.1-darwin-x86_64.tar.gz -C /Applications 启动 bin/kibana 浏览器查看 http://localhost:5601/ 三、deltools http://loca 阅读全文
posted @ 2021-03-06 18:34 ibrake 阅读(110) 评论(0) 推荐(0)
摘要: 一、es安装 1.2 下载后解压 tar xf elasticsearch-7.11.1-darwin-x86_64.tar.gz -C /Applications 1.2 启动es bin/elasticsearch 1.3 浏览器查看 http://localhost:9200/ 二、es插件安 阅读全文
posted @ 2021-03-06 18:06 ibrake 阅读(823) 评论(0) 推荐(0)
摘要: 一、IP网络层概述 在TCP/IP协议的Internet中,网络层由IP协议实现: everything is over IP IP is over everything IP网络是数据报网络: 无连接 简单网络,终端复杂(可靠性实现在TCP) IP网络层核心功能还是网络层的基本功能:抓发,路由 I 阅读全文
posted @ 2021-02-27 21:20 ibrake 阅读(513) 评论(0) 推荐(0)
摘要: Redis秒杀相关点 阅读全文
posted @ 2021-02-23 07:39 ibrake 阅读(247) 评论(0) 推荐(0)
摘要: 虚电路网络和数据报网络 阅读全文
posted @ 2021-02-19 16:27 ibrake 阅读(1109) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 ··· 21 下一页