go
已收录文章:826篇
-
问题内容package main import "fmt" func main() { x := make([]int,0,10) x = append(x, 1,2,3) y := append(x,4) z := append(x,5) fmt.Println(x) fmt.Println(y) fmt.Println(z) }为什么 y 输出的也是 [1 2 3 5] 呢?appen216 收藏
-
问题内容基于docker的web微服务运行的时候,映射了宿主的log目录到容器的log目录,此时我们开启了一个filebeat微服务,这个微服务的目的就是吧log目录的日志同步到elasticsearch,问题是我们如何确489 收藏
-
问题内容$ go get github.com/DHowett/go-plist gopkg/src/github.com/DHowett/go-plist/marshal.go:4:2: no Go source files in /usr/local/go/src/pkg/encoding ls了一下这个目录: $ ls /usr/local/go/src/pkg/encoding/ ascii85 base32 binary gob json215 收藏
-
问题内容还有 GC 的次数,这些用runtime能得到么正确答案 gogs代码里面抄,下面是字段映射,代码里面关键字sysStatus搜了看就知道了。 https://github.com/gogs/gogs/... { 'Uptime': "服务运行时间",269 收藏
-
问题内容 首先有办法做到吗? 有什么库可以做到吗? 有什么网址可以查到? 正确答案godoc 命令支持额外参数 -analysis ,能列出都有哪些类型实现了某个接口,相关参考 godoc -h 或 Static analysis features414 收藏
-
问题内容 package main import( "fmt" ) type PluginInfo struct{ Id int Name string } func main(){ info := make([]*PluginInfo,0) pluginMap := make(map[int]PluginInfo) pluginMap[1] = PluginInfo{357 收藏
-
问题内容 刚接触协程不久,看到golang的goroutine模式 goroutine可以在不同线程中并行运行 在goroutine中共享资源必须加锁 可以配置调度goroutine的线程数量(GOMAXPROCS) 问题 什么时候goroutine会被不213 收藏
-
源码来自import ( "errors" "time" "github.com/go-redis/redis" ) var redisClient *redis.Client type redisLock struct { name string expiry time.Duration } func (l *redisLock) TryLock() error { if ok, _ := redisClient.SetNX(419 收藏
-
问题内容 我的go安装在/usr/local/go 下面 运行go env 显示 go env GOARCH="amd64" GOBIN="" GOEXE="" GOHOSTARCH="amd64" GOHOSTOS="linux" GOOS="linux" GOPATH="" GORACE="" GOROOT="/usr/local/go" GOTOOLDIR="/usr/local/go/pkg/tool/linux_amd64" GO15V293 收藏
-
问题内容 比如php的数组 $data['title'] = 'string'; $data['column'] = 'string'; $data['user'] = ['name' => 'xxx', 'id' => 'xxx']; golang 除了map[string]interface{} 还有其他方法解决吗? 正确答案 无其他解决方法,既然157 收藏
-
kingshard简介kingshard(https://github.com/flike/king...)是一个由Go开发高性能MySQL Proxy项目,kingshard在满足基本的读写分离的功能上,致力于简化MySQL分库分表操作;能够让DBA通过kingshard轻松平滑地实现272 收藏
-
问题内容老师留了一个游戏服务器作业,我想用Go来写,节省代码量,顺便用用新技术~ 但是老师在讲服务器要求的结构的时候用了多进程来分配客户端连接数量。我查了资料,貌似Go没有提供293 收藏