摘要:
1,添加类型为keyword和text的字段需注意: keyword:查询的时候已有的值不会被分词; term查询keyword字段, term不会分词。而keyword字段也不分词,需要完全匹配才可。 match查询keyword字段,match会被分词,而keyword不会被分词,match的需 阅读全文
摘要:
windows系统下执行curl: 注意:windows下不能用单引号,必须用双引号,英文双引号,双引号!!! 查看es状态curl http://localhost:9200/_cat/health 查看特定索引curl "http://localhost:9200/_cat/indices/te 阅读全文
摘要:
public void ConfigureServices(IServiceCollection services) { services.AddControllersWithViews() .Services .AddHealthChecks(Configuration); } public vo 阅读全文
摘要:
源码 阅读全文
摘要:
using System;using System.Collections.Generic;using System.Linq;using System.Threading.Tasks;using Microsoft.AspNetCore.Http;using Microsoft.AspNetCor 阅读全文
摘要:
注意:嵌套类型字段必须是创建索引的时候映射才有效 一,创建索引testindex 二,新增数据 三,排序查询 阅读全文
摘要:
private Expression<T> Compose<T>(Expression<T> first, Expression<T> second, Func<Expression, Expression, Expression> merge) { // build parameter map ( 阅读全文
摘要:
bundleskuindex/_search 查询文档中字段lastModified值范围在2022-06-01和2022-06-05之间{ "query":{ "range":{ "lastModified":{ "gte" : "2022-06-01", "lt" : "2022-06-05" 阅读全文
摘要:
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 阅读全文
摘要:
1,检查以下服务是否启动 2,检查防火墙 3,检查端口 阅读全文