Go,PHP,Swoole 并发测试详解-php教程

资源魔 19 0

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 并发测试详解的具体内容,更多请存眷资源魔其它相干文章!

标签: php php开发教程 php开发资料 php开发自学 Go Swoole 并发测试

抱歉,评论功能暂时关闭!