摘要:
使用go mod之后,想要在goland中有代码提示,有两种方式,一种是使用gopath下的goimport工具,另一种是使用gomod自身的管理工具 我是用的是非gopath的方式,每次新建项目后总是报错 go list -m: can't compute 'all' using the vend 阅读全文
摘要:
查询sql语句的运行时间 show profiles;使用这个语句,首先要开启profiling,默认不开启,set profiling = 1;开启;使用完之后关闭; show profile cpu for query 2;对第二个查询语句进行查看cpu时间,cpu可以换成其他参数 查询到sql 阅读全文