Elasticsearch-文档查询 数据准备 查询 简单查询 mall/goods/1 条件查询 GET mall/goods/_search?q=b_name: "如何" 复杂查询 匹配查询 GET mall/goods/_search { "query": { "match": { "b_na ...
分类:
其他好文 时间:
2021-06-22 18:01:13
阅读次数:
0
2021-06-21 LeetCode每日一题 链接:https://leetcode-cn.com/problems/binary-watch/ 标签:位运算、回溯 题目 二进制手表顶部有 4 个 LED 代表 小时(0-11),底部的 6 个 LED 代表 分钟(0-59)。每个 LED 代表一 ...
分类:
其他好文 时间:
2021-06-22 17:46:33
阅读次数:
0
问题 数据库大小写不敏感 库名,表名敏感: 配置参数lower_case_table_names 可选值 【0,1】0不敏感,1敏感 数据敏感: 排序规则: *_bin: 表示的是binary case sensitive collation,也就是说是区分大小写。 *_ci: case insen ...
分类:
数据库 时间:
2021-06-21 20:31:26
阅读次数:
0
说明 工具类,提供了许多静态方法,用于操作集合。 模块:java.util.Collections 方法:全是static方法,使用时直接Collections.xxx( ... ) 返回值类型 方法 说明 boolean addAll(Collection< ? super T >c, T... ...
分类:
编程语言 时间:
2021-06-20 18:43:07
阅读次数:
0
使用hyperf的时候发现它监听9501端口,然后这样需要ip+port方式去访问,但是这样对用户而言有点不太友好,如果我们还有域名,可以做一个反向代理避免端口直接写出来。 找了找网上别人写的例子,感觉都太不细致了,还是自己写一个吧。 例子如下: 1.查找 sudo apt search apach ...
分类:
系统相关 时间:
2021-06-18 19:59:48
阅读次数:
0
源码示例: virtual_available = fields.Float( 'Forecast Quantity', compute='_compute_quantities', search='_search_virtual_available', digits=dp.get_precisio ...
分类:
其他好文 时间:
2021-06-18 19:41:11
阅读次数:
0
ARMv7 CP15 reference: https://wenku.baidu.com/view/8b576d65d0f34693daef5ef7ba0d4a7303766cd8.html?fr=search ...
分类:
其他好文 时间:
2021-06-18 18:55:28
阅读次数:
0
查看是否区分大小写 show Variables like '%table_names' 查看lower_case_table_names的值,0代表区分,1代表不区分 修改方法 1.用ROOT登录,修改/etc/my.cnf 2.在[mysqld]下加入一行:lower_case_table_na ...
分类:
数据库 时间:
2021-06-17 17:06:18
阅读次数:
0
1 match和term查询 # 并且和或者的条件 #并且 GET t3/doc/_search { "query": { "bool": { "must": [ { "match": { "title": "beautiful" } }, { "match": { "desc": "beautif ...
分类:
其他好文 时间:
2021-06-16 17:37:02
阅读次数:
0
正则表达式中,group()用来提出分组截获的字符串,()用来分组 例如: 1 import re 2 a = "123abc456" 3 print re.search( "([0-9]*)([a-z]*)([0-9]*)" ,a).group( 0 ) #123abc456,返回整体 4 pri ...
分类:
编程语言 时间:
2021-06-15 17:51:42
阅读次数:
0