一直到今天,才打算写这篇文章。我使用的es服务器,是使用docker进行安装的,不像传统的那种安装,分词器要添加到docker里,一直有些头疼。 es整体都整理好了,进行补充没有实现的一些es知识点。 1.参考地址 github:https://github.com/medcl/elasticsea ...
分类:
其他好文 时间:
2020-05-04 00:32:36
阅读次数:
96
Elasticsearch和kibana版本对应关系 Kibana版本 | ES版本 | 4.1 | 1.4.4 + 4.2 | 2.0 + 4.3 | 2.1 + 4.4 | 2.2 + 4.5 | 2.3 + 4.6 | 2.4 + 5 | 5 + ... | ... 编辑中...... ...
分类:
其他好文 时间:
2020-05-03 21:58:03
阅读次数:
78
linux中grep的用法详解 grep (global search regular expression(RE) and print out the line,全面搜索正则表达式并把行打印出来)是一种强大的文本搜索工具,它能使用正则表达式搜索文本,并把匹配的行打印出来。 Unix的grep家族包 ...
分类:
系统相关 时间:
2020-05-03 12:15:07
阅读次数:
94
原文地址:https://blog.csdn.net/qdzeac/article/details/50052587?utm_source=blogxgwz9?ops_request_misc=&request_id=&biz_id=102&utm_medium=distribute.pc_sear ...
分类:
其他好文 时间:
2020-05-03 10:48:07
阅读次数:
77
方法一: 正则 方法二: 原文详见: "Test if a python string is printable" ...
分类:
编程语言 时间:
2020-05-03 01:24:45
阅读次数:
114
Description 给定 $n$ 个长度不超过 $50$ 的由小写英文字母组成的单词准备查询,以及一篇长为 $m$ 的文章,问:文中出现了多少个待查询的单词。多组数据。 Input 第一行一个整数 $T$,表示数据组数; 对于每组数据,第一行一个整数 $n$,接下去 $n$ 行表示 $n$ 个单 ...
分类:
其他好文 时间:
2020-05-02 17:20:20
阅读次数:
62
正则 RegExp 正则表达式(火星文):操作字符串 正则表达式:正则表达式(regular expression)是一个描述字符规则的对象。ECMAScript 的 RegExp 构造函数 表示正则表达式,而 String 和 正则表达式都定义了进行强大的【模式匹配】和【文本检索】与【替换】的函数 ...
分类:
其他好文 时间:
2020-05-02 16:51:29
阅读次数:
62
The task of this problem is simple: insert a sequence of distinct positive integers into a hash table first. Then try to find another sequence of inte ...
分类:
其他好文 时间:
2020-05-02 15:11:59
阅读次数:
52
The lowest common ancestor (LCA) of two nodes U and V in a tree is the deepest node that has both U and V as descendants. A binary search tree (BST) i ...
分类:
其他好文 时间:
2020-05-02 14:54:12
阅读次数:
50
# -*- coding:utf-8 -*-#@Time : 2020/5/2 0:01#@Author: Aluosen#@File : Linklist.py#节点Nodeclass Node: def __init__(self,initdata): self.data = initdata ...
分类:
编程语言 时间:
2020-05-02 11:49:04
阅读次数:
65