上一页 1 2 3 4 5 6 ··· 8 下一页
摘要: 1,添加类型为keyword和text的字段需注意: keyword:查询的时候已有的值不会被分词; term查询keyword字段, term不会分词。而keyword字段也不分词,需要完全匹配才可。 match查询keyword字段,match会被分词,而keyword不会被分词,match的需 阅读全文
posted @ 2022-08-22 15:53 元点 阅读(72) 评论(0) 推荐(0) 编辑
摘要: windows系统下执行curl: 注意:windows下不能用单引号,必须用双引号,英文双引号,双引号!!! 查看es状态curl http://localhost:9200/_cat/health 查看特定索引curl "http://localhost:9200/_cat/indices/te 阅读全文
posted @ 2022-08-15 12:17 元点 阅读(163) 评论(0) 推荐(0) 编辑
摘要: public void ConfigureServices(IServiceCollection services) { services.AddControllersWithViews() .Services .AddHealthChecks(Configuration); } public vo 阅读全文
posted @ 2022-08-15 10:25 元点 阅读(193) 评论(0) 推荐(0) 编辑
摘要: 源码 阅读全文
posted @ 2022-08-13 15:16 元点 阅读(73) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Threading.Tasks;using Microsoft.AspNetCore.Http;using Microsoft.AspNetCor 阅读全文
posted @ 2022-08-12 14:45 元点 阅读(797) 评论(0) 推荐(0) 编辑
摘要: 注意:嵌套类型字段必须是创建索引的时候映射才有效 一,创建索引testindex 二,新增数据 三,排序查询 阅读全文
posted @ 2022-08-12 11:35 元点 阅读(100) 评论(0) 推荐(0) 编辑
摘要: private Expression<T> Compose<T>(Expression<T> first, Expression<T> second, Func<Expression, Expression, Expression> merge) { // build parameter map ( 阅读全文
posted @ 2022-08-03 14:27 元点 阅读(77) 评论(0) 推荐(1) 编辑
摘要: bundleskuindex/_search 查询文档中字段lastModified值范围在2022-06-01和2022-06-05之间{ "query":{ "range":{ "lastModified":{ "gte" : "2022-06-01", "lt" : "2022-06-05" 阅读全文
posted @ 2022-06-07 09:56 元点 阅读(371) 评论(0) 推荐(0) 编辑
摘要: 1,执行sql语句,如下,执行时间17秒左右 SELECT Id,rn,created FROM ( SELECT a.[Id] AS [Id] , row_number() OVER ( Order by a.Created desc) AS [rn], a.created FROM dbo.Li 阅读全文
posted @ 2022-06-06 15:34 元点 阅读(753) 评论(0) 推荐(0) 编辑
摘要: 1,检查以下服务是否启动 2,检查防火墙 3,检查端口 阅读全文
posted @ 2022-05-16 10:48 元点 阅读(330) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 8 下一页