上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 53 下一页
摘要: filbeat篇章——Overview https://www.elastic.co/guide/en/beats/filebeat/8.7/filebeat-overview.html#filebeat-overview Filebeat is a lightweight shipper for 阅读全文
posted @ 2023-04-24 10:28 左扬 阅读(20) 评论(0) 推荐(0) 编辑
摘要: package main import ( "context" "fmt" "github.com/sashabaranov/go-openai" "github.com/chzyer/readline" ) func main() { client := openai.NewClient("") 阅读全文
posted @ 2023-04-18 14:36 左扬 阅读(107) 评论(0) 推荐(1) 编辑
摘要: Go面试题——逃逸分析 一个变量是在堆分配,还是在栈上分配,是经过编译器的逃逸分析之后得出的 "结论"。 一、逃逸分析是什么? 在 C 语言中,可以使用malloc和free手动在堆上分配和回收内存。 在 Go 语言中,堆内存是通过垃圾回收机制自动管理的,无需开发者指定。那么,Go 编译器怎么知道某 阅读全文
posted @ 2023-04-11 16:29 左扬 阅读(67) 评论(0) 推荐(0) 编辑
摘要: VBLOG_项目工程框架搭建 一、架构设计 采用前后端分离架构设计: api:后端接口服务 golang 开发的 restful 接口 使用 mysql 做数据存储 web:vue3 前端框架 前端框架: vue3,vue-router ui组件:arco.design(头条开源组件库) 二、接口设 阅读全文
posted @ 2023-03-31 19:55 左扬 阅读(133) 评论(0) 推荐(0) 编辑
摘要: 常见 strings 操作 https://pkg.go.dev/strings Go Version: 1.20.1 一、概要 Package strings implements simple functions to manipulate UTF-8 encoded strings. (Pac 阅读全文
posted @ 2023-02-28 22:31 左扬 阅读(268) 评论(0) 推荐(0) 编辑
摘要: 双引号、单引号字符串的区别 双引号:双引号括起来的字符串允许有转义字符。 反引号:反引号扩起来的字符串称作 "原始字符串",其中有转义字符的话不会进行转义,会被原样输出。 反引号括起来的原始字符串中不能有反引号这个字符串本身。 1、双引号 示例代码: package main import "fmt 阅读全文
posted @ 2023-02-28 21:47 左扬 阅读(154) 评论(0) 推荐(0) 编辑
摘要: byte类型的切片([]byte)与string Go 语言中,表示字符串的数据类型是 string。我们知道字符串是由字节组成,而字节序列在 Go 语言中是用 byte 类型的切片([]byte)表达,因此 string 类型和 []byte 是可以互相转化的。 package main impo 阅读全文
posted @ 2023-02-28 21:31 左扬 阅读(1801) 评论(0) 推荐(0) 编辑
摘要: 常见报错: C compiler "gcc" not found: exec: "gcc": executable file not found in %PATH% 一、背景 操作系统:windows 10 专业版 Go版本:go version go1.19.4 windows/amd64 开发工 阅读全文
posted @ 2023-02-25 17:00 左扬 阅读(3389) 评论(0) 推荐(0) 编辑
摘要: Istio Deployment Models https://istio.io/latest/docs/ops/deployment/deployment-models/ When configuring a production deployment of Istio, you need to 阅读全文
posted @ 2023-02-18 18:36 左扬 阅读(139) 评论(0) 推荐(0) 编辑
摘要: Centos7 一次性安装:yum -y groupinstall "Development tools" 一、查看 grouplist [root@localhost ~]# yum grouplist | more Loaded plugins: fastestmirror There is n 阅读全文
posted @ 2023-02-10 16:48 左扬 阅读(2737) 评论(0) 推荐(1) 编辑
上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 53 下一页
levels of contents