[MySQL] MySQL Character 2020-12-26 mysql 2075 words 5 mins read Mysql 字符集(Character) 介绍 字符集介绍 MySQL支持多种字符集,不同字符集有区别;广泛使用是utf8和utf8mb4。 utf8是utf Read more...
[MySQL] Mysql Binlog 操作命令 2020-11-22 mysql 760 words 2 mins read Mysql Binlog 日志 使用场景 MySQL主从复制,Master节点开启binlog日志记录,然后同步到slave节点 MySQL数据恢复,使用mysqlbi Read more...
[Go] Golang 标准命令 2020-09-29 golang 2314 words 5 mins read Golang 标准命令 go build 在编译只包含库源码文件的代码包时,只会检查性的编译,不会输出任何结果文件 在编译命令源码文件时,生成可执行包 go build会忽略目 Read more...
[Go] golang io.Reader数据读取 2020-09-27 golang 1046 words 3 mins read golang 从 io.Reader 读取数据 io.Reader 1 2 3 type Reader interface { Read(p []byte) (n int, err error) } Reader接口用于包装基本的读取方法。 Read方法读取len(p)字节数据写入p。它返回写入的 Read more...
[Go] golang plugin插件使用 2020-09-24 golang 1543 words 4 mins read Package plugin implements loading and symbol resolution of Go plugins. Golang是静态编译型语言,在编译时就将所有引用的包(库)全部加载打包到最终的可执行程序(或库文件)中, 因此并不能在运 Read more...