摘要: #demo1: func main() { var a = [3]int{1, 2, 3} var b = []int{1, 2, 3} fmt.Println(a, b) //[1 2 3] [1 2 3] fmt.Printf("a:%T b:%T\n", a, b) // a:[3]int b 阅读全文
posted @ 2020-07-10 21:51 kylingx 阅读(118) 评论(0) 推荐(0) 编辑
摘要: 所述ngx_stream_ssl_module模块(1.9.0)提供了一种用于流代理服务器工作与SSL / TLS协议的必要的支持。 默认情况下未构建此模块,应使用--with-stream_ssl_module 配置参数启用它 。 #配置示例 为了减少处理器负载,建议 将工作进程数设置为 等于处理 阅读全文
posted @ 2020-07-10 16:07 kylingx 阅读(2738) 评论(0) 推荐(0) 编辑
摘要: 参考链接 https://www.cnblogs.com/itzgr/p/13271580.html 阅读全文
posted @ 2020-07-10 14:34 kylingx 阅读(336) 评论(0) 推荐(0) 编辑
摘要: package main import ( "flag" "fmt" ) //**Demo1**: func main() { t1 := flag.Int("w", 0, "demo test") //int变量 t2 := flag.String("a", "Hello", "demo test 阅读全文
posted @ 2020-07-10 14:22 kylingx 阅读(155) 评论(0) 推荐(0) 编辑