摘要: 索引类型 索引类型分为主键索引和非主键索引 主键索引的叶子节点存的是整行数据。在 InnoDB 里,主键索引也被称为聚簇索引(clustered index)。 非主键索引的叶子节点内容是主键的值。在 InnoDB 里,非主键索引也被称为二级索引(secondary index)。 聚簇索引 聚簇索 阅读全文
posted @ 2023-11-01 16:26 朝阳1 阅读(48) 评论(0) 推荐(0) 编辑
摘要: 临时配置,在使用pip的时候加参数-i https://pypi.tuna.tsinghua.edu.cn/simple pip install -i https://pypi.tuna.tsinghua.edu.cn/simple django pip install -r .\requireme 阅读全文
posted @ 2023-10-26 11:39 朝阳1 阅读(150) 评论(0) 推荐(0) 编辑
摘要: promethus监控k8s有两种方式,一直是k8s搭建自己监控自己 第二种是外部搭建好了promethus,k8s搭建pod收集信息 yaml地址为 https://github.com/starsliao/Prometheus/tree/master/kubernetes 或者 https:// 阅读全文
posted @ 2023-10-23 16:03 朝阳1 阅读(77) 评论(0) 推荐(0) 编辑
摘要: <?php // 定义坐标结构 class Coordinate { public $x; public $y; public function __construct($x, $y) { $this->x = $x; $this->y = $y; } } // 定义地图大小 define("ROW 阅读全文
posted @ 2023-10-21 15:17 朝阳1 阅读(8) 评论(0) 推荐(0) 编辑
摘要: package main import ( "fmt" ) // 定义坐标结构 type Coordinate struct { x, y int } // 定义地图大小 const ( rows = 4 cols = 4 ) // 定义地图数组 var grid = [][]int{ {0, 1, 阅读全文
posted @ 2023-10-21 15:16 朝阳1 阅读(9) 评论(0) 推荐(0) 编辑
摘要: logrus目前以及不维护了,care的话可以用zap package xlog import ( "bufio" "fmt" "github.com/sirupsen/logrus" rotatelogs "github.com/lestrrat-go/file-rotatelogs" "gith 阅读全文
posted @ 2023-10-21 14:53 朝阳1 阅读(81) 评论(0) 推荐(0) 编辑
摘要: go get github.com/spf13/viper config.toml title = "toml exaples" redis = "127.0.0.1:3300" [mysql] host = "192.168.1.1" ports = 3306 username = "root" 阅读全文
posted @ 2023-10-21 14:27 朝阳1 阅读(55) 评论(0) 推荐(0) 编辑
摘要: WaitGroup 主要用于控制任务组下的并发子任务。它的具体做法就是,子任务 goroutine 执行前通过 Add 方法添加任务数目,子任务 goroutine 结束时调用 Done 标记已完成任务数,主任务 goroutine 通过 Wait 方法等待所有的任务完成后才能执行后续逻辑 pack 阅读全文
posted @ 2023-10-21 14:10 朝阳1 阅读(47) 评论(0) 推荐(0) 编辑
摘要: package main import ( "fmt" _ "github.com/go-sql-driver/mysql" "xorm.io/xorm" ) type PointInfo struct { Id int64 `xorm:"pk autoincr"` ProductKey strin 阅读全文
posted @ 2023-10-21 13:59 朝阳1 阅读(96) 评论(0) 推荐(0) 编辑
摘要: 有时候拼接es语法太麻烦了,熟悉mysql的同学可以用mysql语法,6.X以上的es版本都支持 package main import ( "bytes" "encoding/json" "fmt" "github.com/elastic/go-elasticsearch/v8" "log" ) 阅读全文
posted @ 2023-10-20 15:55 朝阳1 阅读(70) 评论(0) 推荐(0) 编辑