server
已收录文章:15篇
-
采用go 实现的websocket,已经调试通过在此记录。 测试工具网址:https://www.idcd.com/tool/socket 话不多说上全部代码: package main import ( "fmt" "github.com/gin-gonic/gin" "github.com/gorilla/websocket" "net/http" u390 收藏
-
Http Server 代码 go.mod: module goStudy1 go 1.17 main.go: package main import ( "fmt" "os" "strconv" //"github.com/thinkeridea/go-extend/exnet" "io" "log" "net/http" "strings" ) /* 编写一个 HTTP 服务器,4个功能: 1,接166 收藏
-
前言 对于Golang来说,实现一个简单的 http server 非常容易,只需要短短几行代码。同时有了协程的加持,Go实现的 http server 能够取得非常优秀的性能。这篇文章将会对go标准库 net/http 实现http服务116 收藏