摘要:
#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 阅读全文
摘要:
所述ngx_stream_ssl_module模块(1.9.0)提供了一种用于流代理服务器工作与SSL / TLS协议的必要的支持。 默认情况下未构建此模块,应使用--with-stream_ssl_module 配置参数启用它 。 #配置示例 为了减少处理器负载,建议 将工作进程数设置为 等于处理 阅读全文
摘要:
参考链接 https://www.cnblogs.com/itzgr/p/13271580.html 阅读全文
摘要:
package main import ( "flag" "fmt" ) //**Demo1**: func main() { t1 := flag.Int("w", 0, "demo test") //int变量 t2 := flag.String("a", "Hello", "demo test 阅读全文