上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 37 下一页
摘要: 【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 谷粒-笔记 阅读(2029) 评论(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 谷粒-笔记 阅读(208) 评论(0) 推荐(0)
摘要: 【Nginx】常用软件代理设置 proxy_pass http://localhost:5601 最后带/标识绝对路径不会带代理地址 consul location ~ ^/ui { auth_basic "Please input username and password!"; #这里是验证时的 阅读全文
posted @ 2021-10-25 20:43 谷粒-笔记 阅读(183) 评论(0) 推荐(0)
摘要: 1、Request cannot be executed; I/O reactor status: STOPPED 2、max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144 阅读全文
posted @ 2021-10-22 18:10 谷粒-笔记 阅读(5958) 评论(0) 推荐(0)
摘要: 函数声明: function foo() {},函数声明会被引擎提升匿名函数:function () {}; 函数表达式:var fun = function () {}; 要在函数体后面加括号就能立即调用,则这个函数必须是函数表达式,不能是函数声明 foo();// 因为函数声明提升,不会报错 f 阅读全文
posted @ 2021-10-22 15:02 谷粒-笔记 阅读(49) 评论(0) 推荐(0)
摘要: Git 和 Commit 合在一起,显示效果,设置方式 Setting -> Version Control -> Commit-> 取消 Use non-modal commit interface Git 和 Commit 分开,显示效果,设置方式 Setting -> Version Cont 阅读全文
posted @ 2021-10-10 20:59 谷粒-笔记 阅读(2642) 评论(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 谷粒-笔记 阅读(10777) 评论(0) 推荐(3)
摘要: 先给答案:要关闭 官方文档:https://docs.oracle.com/javase/tutorial/jdbc/basics/sqldatasources.html#pooled_connection 我们以 HikariDataSource 为例子 @Autowired DataSource 阅读全文
posted @ 2021-09-11 17:13 谷粒-笔记 阅读(2157) 评论(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 谷粒-笔记 阅读(352) 评论(0) 推荐(0)
摘要: 节点:一个运行中的 Elasticsearch 实例称为一个节点。 集群:由一个或者多个拥有相同 cluster.name 配置的节点组成共同承担数据和负载的压力的集群。 索引:保存相关数据的地方,是指向一个或者多个物理分片的逻辑命名空间。 分片:一个分片是一个底层的工作单元,它仅保存了全部数据中的 阅读全文
posted @ 2021-08-15 22:30 谷粒-笔记 阅读(620) 评论(0) 推荐(0)
上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 37 下一页