Rumah >pembangunan bahagian belakang >tutorial php >Go,PHP,Swoole 并发测试详解

Go,PHP,Swoole 并发测试详解

coldplay.xixi
coldplay.xixike hadapan
2020-07-02 17:55:332518semak imbas

Go,PHP,Swoole 并发测试详解

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();

Atas ialah kandungan terperinci Go,PHP,Swoole 并发测试详解. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!

Kenyataan:
Artikel ini dikembalikan pada:webhek.com. Jika ada pelanggaran, sila hubungi admin@php.cn Padam

Artikel berkaitan

Lihat lagi