您的位置 首页 技术

Go,PHP,Swoole 并发测试详解

Go package mainimport ( "fmt" _ "fmt" "net/http" _ "os&…

Go

package mainimport (    "fmt"    _ "fmt"    "net/http"    _ "os")func main() {    http.HandleFunc("/", handle)    http.ListenAndServe("0.0.0.0:8082",nil)}func handle(w http.ResponseWriter,r *http.Request) {    fmt.Fprint(w,"URL=",r.URL.Path)    fmt.Println(r.RequestURI)}

相关学习推荐:PHP编程从入门到精通

PHP内置服务

echo 1;

Swoole

$http = new Swoole\Http\Server("0.0.0.0", 9501);$http->on('request', function ($request, $response) {    echo 1;});$http->start();

以上就是Go,PHP,Swoole 并发测试详解的详细内容,更多请关注24课堂在线网其它相关文章!

本文来自网络,不代表24小时课堂在线立场,转载请注明出处:https://www.24ketang.cn/90357.html

为您推荐

返回顶部