golang
文章平均质量分 79
lys07962000
这个作者很懒,什么都没留下…
展开
-
工作日常记录
查看core文件gdb -c core-lobby_jlqp-14566-1623480843 /data/game-server/lobby/lobby_jlqpgrep -a -A 10 "get_prize_pool_record" ../dbproxy/log/20210612.loggrep -a "get_prize_pool_record" ../dbproxy/log/20210612.logxftp 上次文件 permission is not allowed出现:permi.原创 2022-02-03 22:14:16 · 1408 阅读 · 0 评论 -
Golang亿级高并发实例(代码可直接使用)
main.gopackage mainimport ( "fmt" conc "github.com/micro/examples/Test/Concurrence" "runtime" //"runtime" "time")//定义一个实现Job接口的数据type Score struct { Num int}//定义对数据的处理fu...转载 2020-04-20 21:51:00 · 2607 阅读 · 2 评论 -
go mod tidy 设置私有库不走代理
windows:set GOPRIVATE=gitlab.xx.comset GOPROXY=https://goproxy.cnset GONOPROXY=gitlab.xx.comset GONOSUMDB=gitlab.xx.commacexport GOPRIVATE="gitlab.xx.com"exportGOPROXY="https://goproxy.cn...原创 2020-03-14 21:35:24 · 5939 阅读 · 0 评论 -
go-micro搭建
------------------------------------go get github.com/micro/micro/v2 ##widows未通过brew install etcd# installbrew install etcd# runetcd# Use flagmicro --registry=etcd list services# Use e...转载 2020-03-09 11:09:19 · 275 阅读 · 0 评论 -
创建go module工程!!!!
创建Hello工程,进入到Hello目录下,go mod init 生成 go.mod在其目录下新建文件夹main,并在其目录下新建main.gomain.go:package mainimport ( "fmt" "github.com/astaxie/beego")func main() { fmt.Println("hello world") b...原创 2020-02-21 17:29:14 · 405 阅读 · 0 评论 -
Go-Micro微服务入门(一):环境搭建
from:https://www.toutiao.com/a6752699652321051147/所依赖软件各个软件及版本PS:下文中所有软件安装均基于Linux系统。安装GO(golang)下载go安装包:wget https://studygolang.com/dl/golang/go1.13.3.linux-amd64.tar.gz解压安装包到/usr/...转载 2019-12-31 22:38:30 · 1473 阅读 · 0 评论 -
go、JS AES(CBC模式)加密解密兼容
js 代码:<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <script src="aes/aes.js"></...原创 2019-08-29 14:55:42 · 1001 阅读 · 0 评论 -
WINDOWS vs code 配置GO环境
https://blog.csdn.net/hil2000/article/details/51714607 Installing github.com/nsf/gocode SUCCEEDED Installing github.com/uudashr/gopkgs/cmd/gopkgs SUCCEEDED Installing github.com/ram...转载 2018-09-21 09:14:56 · 342 阅读 · 0 评论