grep (Global search Regular Expression(RE) and Print out the line, 全面搜索正则表达式并把行打印出来)是一种强大的文本搜索工具,它能使用正则表达式搜索文本,并把匹配的行打印出来。 ...
分类:
系统相关 时间:
2020-06-23 13:18:34
阅读次数:
62
##实践1. 集成阿里巴巴p3c规范 0. 准备插件: 找到SonarQube版本对应的p3c插件 SonarQube7.6确认可用插件:https://github.com/caowenliang/sonar-pmd-p3c 下载插件代码并构建 >git clone https://github. ...
分类:
其他好文 时间:
2020-06-23 00:37:17
阅读次数:
90
Pyhton介绍 pip 是 Python 包管理工具,该工具提供了对Python 包的查找、下载、安装、卸载的功能。 目前如果你在 python.org 下载最新版本的安装包,则是已经自带了该工具。 Python 2.7.9 + 或 Python 3.4+ 以上版本都自带 pip 工具。 pip ...
分类:
编程语言 时间:
2020-06-22 23:15:02
阅读次数:
83
最近做的项目,有个需求(从Elastic Search取数据,业务运算后),每次要向MySQL插入1300万数据左右。最初用MySQL的executemany()一次插入10000条数据,统计的时间如下: 如上,插入时间,由于系统的IO变化,会有波动,最快在4秒左右。 后改为"load data i ...
分类:
数据库 时间:
2020-06-22 21:00:39
阅读次数:
71
数据结构 #include <stdio.h> #include <stdlib.h> int search(int arr[],int len,int key) { int mid,low = 1; int high = len; //printf("%d!",high); while(low < ...
分类:
其他好文 时间:
2020-06-22 18:37:56
阅读次数:
79
这个函数我没试过 不知道好不好用 function htmltotxt($document){ $search = array('@<script[^>]*?>.*?</script>@si', // Strip out javascript '@<[\\/\\!]*?[^<>]*?>@si', / ...
分类:
Web程序 时间:
2020-06-22 15:44:24
阅读次数:
64
Methodology: READ MF! [Originally from the Post: System design interview: how to design a chat system (e.g., Facebook Messenger, WeChat or WhatsApp)] ...
分类:
其他好文 时间:
2020-06-22 13:02:56
阅读次数:
98
CCAnr: A Configuration Checking Based Local Search Solver for Non-random Satisfiability Cai S., Luo C., Su K. (2015) CCAnr: A Configuration Checking B ...
分类:
其他好文 时间:
2020-06-22 02:03:41
阅读次数:
105
题目描述 给定一个排序数组和一个目标值,在数组中找到目标值,并返回其索引。如果目标值不存在于数组中,返回它将会被按顺序插入的位置。 你可以假设数组中无重复元素。 示例 1: 输入: [1,3,5,6], 5 输出: 2代码: 1 def binarySearch(nums, target): 2 ' ...
分类:
其他好文 时间:
2020-06-22 01:14:17
阅读次数:
44
短语匹配使用match_phrase GET /my_index/my_type/_search { "query": { "match_phrase": { "title": "quick brown fox" } } } 也可以用match查询,给其加上type "match": { "titl ...
分类:
其他好文 时间:
2020-06-21 18:10:03
阅读次数:
55