上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 35 下一页
摘要: 在 Version Control 的 log 右键,选择要回退到的版本,选择 Reset Current Branch to Here 上边也可以通过命令行完成 git log 查看历史版本idgit reset --soft 想要回退到的版本id 推送 git push origin maste 阅读全文
posted @ 2021-12-01 14:38 翠微 阅读(2245) 评论(0) 推荐(0) 编辑
摘要: 【ElasticSearch】使用 curl 查询 curl命令文档 http://www.ruanyifeng.com/blog/2019/09/curl-reference.html 查看索引 curl -XGET http://localhost:9200/_cat/indices 查看集群健 阅读全文
posted @ 2021-11-25 13:26 翠微 阅读(1596) 评论(0) 推荐(0) 编辑
摘要: 案例: 操作系统:Redox 纯rust开发 System76公司 Rust [rʌst] 生锈 Rustacean [rus'dation] 锈粉 【Rust】开发环境 使用 rustup 安装 rust linux $ curl --proto '=https' --tlsv1.2 https: 阅读全文
posted @ 2021-11-14 10:05 翠微 阅读(153) 评论(0) 推荐(0) 编辑
摘要: 【Nginx】常用软件代理设置 proxy_pass http://localhost:5601 最后带/标识绝对路径不会带代理地址 consul location ~ ^/ui { auth_basic "Please input username and password!"; #这里是验证时的 阅读全文
posted @ 2021-10-25 20:43 翠微 阅读(155) 评论(0) 推荐(0) 编辑
摘要: 1、Request cannot be executed; I/O reactor status: STOPPED Caused by: java.lang.RuntimeException: Request cannot be executed; I/O reactor status: STOPP 阅读全文
posted @ 2021-10-22 18:10 翠微 阅读(5519) 评论(0) 推荐(0) 编辑
摘要: 函数声明: function foo() {},函数声明会被引擎提升匿名函数:function () {}; 函数表达式:var fun = function () {}; 要在函数体后面加括号就能立即调用,则这个函数必须是函数表达式,不能是函数声明 foo();// 因为函数声明提升,不会报错 f 阅读全文
posted @ 2021-10-22 15:02 翠微 阅读(39) 评论(0) 推荐(0) 编辑
摘要: Git 和 Commit 合在一起,显示效果,设置方式 Setting -> Version Control -> Commit-> 取消 Use non-modal commit interface Git 和 Commit 分开,显示效果,设置方式 Setting -> Version Cont 阅读全文
posted @ 2021-10-10 20:59 翠微 阅读(2124) 评论(0) 推荐(0) 编辑
摘要: 参考链接:https://blog.csdn.net/zhuyu19911016520/article/details/90714429 As a general rule you need the only worker with large number of worker_connection 阅读全文
posted @ 2021-09-29 15:37 翠微 阅读(9033) 评论(0) 推荐(3) 编辑
摘要: 先给答案:要关闭 官方文档:https://docs.oracle.com/javase/tutorial/jdbc/basics/sqldatasources.html#pooled_connection 我们以 HikariDataSource 为例子 @Autowired DataSource 阅读全文
posted @ 2021-09-11 17:13 翠微 阅读(1779) 评论(0) 推荐(0) 编辑
摘要: 1、LOADING Redis is loading the dataset in memory 编辑 redis.conf maxmemory 6GB maxmemory-policy allkeys-lru appendonly no 2、MISCONF Redis is configured 阅读全文
posted @ 2021-09-11 12:18 翠微 阅读(248) 评论(0) 推荐(0) 编辑
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 35 下一页