上一页 1 ··· 4 5 6 7 8 9 10 11 12 下一页
摘要: String模块ascii_letters和digits >>> chars = string . ascii_letters + string . digits >>> print ( chars ) abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUV 阅读全文
posted @ 2021-02-24 16:09 薄荷味日记 阅读(640) 评论(0) 推荐(0) 编辑
摘要: 性能差异 过滤查询(Filtering queries)只是简单的检查包含或者排除,这就使得计算起来非常快。考虑到至少有一个过滤查询(filtering query)的结果是 “稀少的”(很少匹配的文档),并且经常使用不评分查询(non-scoring queries),结果会被缓存到内存中以便快速 阅读全文
posted @ 2021-02-24 14:57 薄荷味日记 阅读(144) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-02-24 14:41 薄荷味日记 阅读(202) 评论(0) 推荐(0) 编辑
摘要: dis_max 查询 curl -X GET "localhost:9200/_search?pretty" -H 'Content-Type: application/json' -d' { "query": { "dis_max": { "queries": [ { "term": { "tit 阅读全文
posted @ 2021-02-24 14:35 薄荷味日记 阅读(131) 评论(0) 推荐(0) 编辑
摘要: bool bool 查询也可以接受 must 、 must_not , should 和 filter 参数下的多个查询语句。 curl -X POST "localhost:9200/_search?pretty" -H 'Content-Type: application/json' -d' { 阅读全文
posted @ 2021-02-23 16:10 薄荷味日记 阅读(203) 评论(0) 推荐(0) 编辑
摘要: term term是代表完全匹配,即不进行分词器分析,文档中必须包含整个搜索的词汇 { "term" : { "price" : 20 } } # SELECT document FROM products WHERE price = 20 通常当查找一个精确值的时候,我们不希望对查询进行评分计算。 阅读全文
posted @ 2021-02-23 15:38 薄荷味日记 阅读(470) 评论(0) 推荐(0) 编辑
摘要: 查询表达式 查询表达式(Query DSL)是一种非常灵活又富有表现力的 查询语言。 Elasticsearch 使用它可以以简单的 JSON 接口来展现 Lucene 功能的绝大部分。 match curl -X GET "localhost:9200/_search?pretty" -H 'Co 阅读全文
posted @ 2021-02-23 15:34 薄荷味日记 阅读(175) 评论(0) 推荐(0) 编辑
摘要: 字符串去除html字符: str = re.sub(r'</?\w+[^>]*>','',a) 校验密码强度: ^(?=.*\\d)(?=.*[a-z])(?=.*[A-Z]).{8,10}$ 校验身份证号码: # 15位: ^[1-9]\\d{7}((0\\d)|(1[0-2]))(([0|1|2 阅读全文
posted @ 2020-09-10 13:22 薄荷味日记 阅读(200) 评论(0) 推荐(0) 编辑
摘要: Vue.js 基本代码 Vue指令 `基本的代码结构`、`插值表达式`、`v-cloak`、`v-text`、`v-html`和 `v-bind` <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="v 阅读全文
posted @ 2020-09-09 14:25 薄荷味日记 阅读(120) 评论(0) 推荐(0) 编辑
摘要: The MySQL server is running with the LOCK_WRITE_GROWTH option so it cannot execute this statement 向aliyun 写入数据,报错。阿里云的一个保护策略,空间剩余不足时,禁止数据写入 如果想知道数据库容量 阅读全文
posted @ 2020-07-24 13:06 薄荷味日记 阅读(1926) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 下一页