摘要: ## 分词发生时期 分词器的处理过程发生在`Index Time`和`Search Time`两个时期 - Index Time:文档写入并创建倒排索引时期,其分词逻辑取决于映射参数`analyzer`。 - Search Time:搜索发生时期,其分词仅对搜索词产生作用。 ## 分词器的组成 - 阅读全文
posted @ 2023-07-23 15:08 (x²+y²-1)³=x²y³ 阅读(66) 评论(0) 推荐(0) 编辑
摘要: # Elasticsearch [Elasticsearch下载](https://www.elastic.co/cn/downloads/elasticsearch) [elastic官方文档](https://www.elastic.co/guide/en/elasticsearch/refer 阅读全文
posted @ 2023-05-15 17:57 (x²+y²-1)³=x²y³ 阅读(24) 评论(0) 推荐(0) 编辑
摘要: RabbitMQ RabbitMQ使用 安装RabbitMQ RabbitMQ官网: https://www.rabbitmq.com/ RabbitMQ是使用Erlang开发,需要先安装Erlang。RabbitMQ与Erlang的版本对照表如下: 启动RabbitMQ 在..\RabbitMQ 阅读全文
posted @ 2023-05-06 17:44 (x²+y²-1)³=x²y³ 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 替换空格 class Solution { public: string replaceSpace(string s) { string res; for(auto c:s){ if(c!=' '){ res+=c; continue; } res+="%20"; } return res; } } 阅读全文
posted @ 2022-04-07 21:09 (x²+y²-1)³=x²y³ 阅读(93) 评论(0) 推荐(0) 编辑
摘要: 删除排序数组中的重复项 class Solution { public: int removeDuplicates(vector<int>& nums) { int size=nums.size();//获取数组的长度 int left=0;//定义左指针 int right=1;//定义右指针 f 阅读全文
posted @ 2022-03-28 16:41 (x²+y²-1)³=x²y³ 阅读(71) 评论(0) 推荐(0) 编辑
摘要: 原作者链接:「数学模型」三角函数化简公式总结_Robot_Starscream的博客-CSDN博客_三角函数化简公式 1.函数关系: 2.诱导公式: 3.基本公式: 阅读全文
posted @ 2022-03-10 22:38 (x²+y²-1)³=x²y³ 阅读(1427) 评论(0) 推荐(0) 编辑
摘要: npm使用国内镜像的方法 一.通过命令配置 命令 npm config set registry https://registry.npm.taobao.org 验证命令 npm config get registry 如果返回https://registry.npm.taobao.org,说明镜像 阅读全文
posted @ 2022-03-05 12:30 (x²+y²-1)³=x²y³ 阅读(24) 评论(0) 推荐(0) 编辑
摘要: 推荐一些比较有趣的插件 Vue看板娘教程详细版_辰鬼的博客-CSDN博客_vue 看板娘 APlayer播放器 metowolf/MetingJS: A powerful plugin connect APlayer and Meting (github.com) 阅读全文
posted @ 2022-02-28 20:31 (x²+y²-1)³=x²y³ 阅读(59) 评论(0) 推荐(0) 编辑
摘要: 推荐一个markdown编辑器:mavon-editor Install mavon-editor (安装) npm install mavon-editor --save 全局引入(main.js) import Vue from 'vue' import mavonEditor from 'ma 阅读全文
posted @ 2022-02-26 14:48 (x²+y²-1)³=x²y³ 阅读(37) 评论(0) 推荐(0) 编辑
摘要: css3实现超出文本指定行数(指定文本长度)用省略号代替 PS:搬运,仅供参考 测试代码: 1 <!DOCTYPE html> 2 <html> 3 4 <head> 5 <meta name="viewport" content="width=device-width, initial-scale 阅读全文
posted @ 2022-02-26 10:57 (x²+y²-1)³=x²y³ 阅读(70) 评论(0) 推荐(0) 编辑