V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  leeraya  ›  全部回复第 6 页 / 共 6 页
回复总数  109
1  2  3  4  5  6  
2021-11-22 15:40:37 +08:00
回复了 bigbilii 创建的主题 职场话题 东软重庆咋样?
之前跟东软合作干了一个项目,属实辛苦。他们人都习惯性出长差。
现在很多 markdown 框架都提供了这种功能,不需要管实现。配个图片服务器地址就没你的事了。
2021-11-08 13:26:57 +08:00
回复了 woshicixide 创建的主题 程序员 有用过阿里云的 polarDB 的吗?
还可以的,底层是 mysql ,只是做了中间件负责多个节点数据一致性保障。对于 mysql 语法应该是 100%支持。
2021-10-30 16:26:31 +08:00
回复了 lslvxy 创建的主题 MySQL Mysql 数据库迁移
mydumper 导出
nyloader 导入

或者试一下 ali 的 datax ,一个数据迁移框架,mysql 到 mysql 看到时支持的。
2021-10-30 10:46:49 +08:00
回复了 oldboy627 创建的主题 程序员 有应用混沌工程的朋友吗?
k8s 就上 chaos mesh 吧。 之前用 chaos mesh 构建过数据库日报系统。定时跑 podkill, podfail 任务,抓日志,画图,每天生成数据库运行报告。用起来还可以的,文档也全。
2020-11-17 17:48:23 +08:00
回复了 nutting 创建的主题 程序员 今天玩了下某运营商的 devOps 系统
我们公司自己开发一套 devops 系统,rancher+gitlab+jenkins+sonarqube+harbor 架构。用起来很不错。
2020-11-17 17:43:09 +08:00
回复了 xyxy 创建的主题 Go 编程语言 golang 有没有 api 管理 的框架
2020-10-29 13:42:02 +08:00
回复了 leeraya 创建的主题 Go 编程语言 go 语言就很离谱
@hakono 太牛了,感谢大佬。
2020-10-29 12:01:23 +08:00
回复了 leeraya 创建的主题 Go 编程语言 go 语言就很离谱
例如:
type Greeting func(name string) string
func main() {

test := make([]Greeting, 3)

nameArr := []string{"lee", "ray", "Pool"}

for index, name1 := range nameArr {
// if index == 0 {
// test[index] = func(name string) string {
// fmt.Println("hello " + name + name1 + strconv.Itoa(index))
// return "hello " + name + name1 + strconv.Itoa(index)
// }
// } else {
// test[index] = func(name string) string {
// fmt.Println("hello " + name + name1 + strconv.Itoa(index))
// return "hello " + name + name1 + strconv.Itoa(index)
// }
// }
test[index] = func(name string) string {
fmt.Println("hello " + name + name1 + strconv.Itoa(index))
return "hello " + name + name1 + strconv.Itoa(index)
}

}
}
debug 看 test 数组,元素都是一样的
1  2  3  4  5  6  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   882 人在线   最高记录 6543   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 28ms · UTC 22:35 · PVG 06:35 · LAX 15:35 · JFK 18:35
Developed with CodeLauncher
♥ Do have faith in what you're doing.