stringRedisTemplate和redisTemplate关于模糊匹配的区别 stringRedisTemplate匹配可以用*test*,匹配方法与命令行里一样 redisTemplate的匹配有问题,如果存入的key为test1,匹配test*可以,但匹配tes*结果为空。... 2019年11月13日 缓存 浏览量:966 次 发表评论 阅读全文
微服务调用报错org.springframework.web.client.HttpClientErrorException$BadRequest: 400 null 微服务调用报错具体如下: org.springframework.web.client.HttpClientErrorException$BadRequest: 400 null 原因是因为调用时请求... 2019年11月12日 SpringCloud 浏览量:8,469 次 发表评论 阅读全文
微服务调用报错Request processing failed; nested exception is org.springframework.web.client.HttpClientErrorException$NotFound: 404 null 微服务调用具体报错如下: org.springframework.web.util.NestedServletException: Request processing failed; nested ... 2019年11月11日 SpringCloud 浏览量:6,246 次 发表评论 阅读全文
ElasticSearch7.x某一个字段完全匹配,其它字段里模糊匹配的写法 现在es里有四个字段,分别是title,content,author,type,现在想指定type和keyword,在指定的type里搜索keyword,在官方文档里找了关天也没有找到相应的例子,网上... 2019年11月8日 全文检索 浏览量:597 次 发表评论 阅读全文
ElasticSearch7.x高亮结果里没有进行分词 现在的结果是 "highlight": { "title": "<em>专</em><em>题</em>1" } 可以看到,专题被分成了两个字分... 2019年11月7日 全文检索 浏览量:750 次 发表评论 阅读全文
ElasticSearch7.x搜索结果去重 现在我的业务场景是这样的,我用es记录用户的浏览记录,设想是用户每次访问详情页时往es里写记录,分别记录详情id,页面名,api名和访问时间。这里存在一个问题就是可能存在重复的数据,比如一个用户在不同... 2019年11月6日 全文检索 浏览量:979 次 发表评论 阅读全文
ElasticSearch7.x java api搜索时高亮结果highlightFields一直为空 这两天在用最新版的elasticsearch7.4的java api,发现一个问题那就是明明设置了高亮字段,但结果里hit.getHighlightFields()取得的高亮结果一直为null,但是在... 2019年11月5日 全文检索 浏览量:2,860 次 发表评论 阅读全文
mackbook安装brew报错Failed to connect to raw.githubusercontent.com port 443: Operation timed out 今天在macbook上安装brew,安装命令为 /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/in... 2019年11月4日 mac 浏览量:1,010 次 发表评论 阅读全文
Spring Cloud Gateway与spring-boot-starter-web冲突 大家应该都知道,Spring Cloud Gateway与spring-boot-starter-web有冲突,一般情况下我们只需要把spring-boot-starter-web依赖去掉即可。 但是... 2019年10月31日 Spring Cloud Gateway 浏览量:2,672 次 1 阅读全文