摘要: 有时候拼接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) 编辑
摘要: package main import "fmt" // MyInt ~表示不仅支持int8, 还支持int8的衍生类型int8A和int8B type MyInt interface { int | ~int8 | int16 | int32 | int64 } func getMaxNum[T 阅读全文
posted @ 2023-10-20 11:15 朝阳1 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 首先新建Service,名称叫做server-api vim /lib/systemd/system/server-api.service 或者 vim /etc/systemd/system/server-api.service [Unit] Description=server api [Ser 阅读全文
posted @ 2023-10-20 11:09 朝阳1 阅读(23) 评论(1) 推荐(0) 编辑
摘要: 项目目录 ├── asset // 静态资源文件 │ ├── bootstrap.min.css │ ├── bootstrap.min.js │ └── jquery.js ├── go.mod ├── go.sum ├── html // html模版文件 │ └── index.html └─ 阅读全文
posted @ 2023-10-20 10:47 朝阳1 阅读(240) 评论(0) 推荐(0) 编辑