摘要:
=VLOOKUP(B1,$A$1:$A$50,1,FALSE) $A$1:$A$50确保指定区域,下拉时不会变更; 阅读全文
摘要:
使用Navicat导出密码:目前使用Navicat17亲测有效 使用php解密代码 <?php class NavicatPassword { protected $version = 0; protected $aesKey = 'libcckeylibcckey'; protected $aes 阅读全文
摘要:
git本地项目分支没有push到远程,本地切换分支,删掉本地项目重新远程clone,导致本地没有push的分支丢失。 git clone 远程项目 在idea找到local history,在local history可以找到最后一次commit的提交记录: 这样删除的代码就能完整找回。 阅读全文
摘要:
UpdateByQueryRequest参数没有直接设置wait_for_completion的属性 通过使用客户端封装的submitUpdateByQueryTask方法调用: TaskSubmissionResponse taskSubmissionResponse = writeHighLev 阅读全文
摘要:
public static void main(String[] args) { Map<String, Integer> map = new HashMap<>(); /* for (int i = 0; i < 1000000; i++) { int nextInt = new Random() 阅读全文
摘要:
ES版本号:5.3.2 ``` { "name": "es-node-1", "cluster_name": "es-b2b-dev0", "cluster_uuid": "c5LjpmeLSV-1Px7eQv0zDw", "version": { "number": "5.3.2", "build 阅读全文
摘要:
jmeter插件Plugins Manager报错 阅读全文
摘要:
在实际工作中,重处理是一个非常常见的场景,比如:发送消息失败、调用远程服务失败、争抢锁失败。 这些错误可能是因为网络波动造成的,等待过后重处理就能成功。通常来说,会用try/catch,while循环之类的语法来进行重处理,但是这样的做法缺乏统一性,并且不是很方便,要多写很多代码。然而sprin 阅读全文
摘要:
-- 利用collapse和cardinality进行单字段去重https://blog.csdn.net/qq_43564245/article/details/128554317 GET /bank/_search { "query": { "match_phrase": { "address" 阅读全文
摘要:
项目引入JMH进行性能测试,完整demo 业务类: package com.simon.benchmark; /** * @Author:huzhiyang * @Date:2023/3/7 17:03 * @Desc: */ public class BizService { public voi 阅读全文