加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.go 1.09 KB
一键复制 编辑 原始数据 按行查看 历史
tuboyou 提交于 2020-10-23 16:42 . 试验方法2,设计中
package main
import (
"fmt"
"manygo/doconfig"
"manygo/doweb"
"manygo/mytools"
// "runtime"
"strings"
)
func main() {
fmt.Println("start,loading...if no message,please Enter~")
// rt := runtime.NumCPU()
// fmt.Println("当前CPU为" + mytools.Int2String(rt) + "核")
// fmt.Println("")
// runtime.GOMAXPROCS(rt)
initInput()
if v, ok := doconfig.Config["ismaster"]; ok && v == "1" {
doweb.MasterStart()
} else {
doweb.ClientStart()
}
}
func initInput() {
if !doweb.StartInit() {
v := mytools.MyInput("Is master?[y/q/xxx.xxx.xxx.xxx]")
if strings.ToUpper(v) == "Y" || strings.Trim(v, " ") == "" {
doconfig.Config["ismaster"] = "1"
} else if strings.ToUpper(v) == "Q" {
mytools.MYClose(1)
} else {
doconfig.Config["masterip"] = v
}
} else {
v := mytools.MyInput("Is connect local?[y/q/xxx.xxx.xxx.xxx]")
if strings.ToUpper(v) == "Y" || strings.Trim(v, " ") == "" {
doconfig.Config["ismaster"] = "0"
doconfig.Config["masterip"] = "127.0.0.1"
} else if strings.ToUpper(v) == "Q" {
mytools.MYClose(1)
} else {
doconfig.Config["masterip"] = v
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化