>  기사  >  백엔드 개발  >  Go, PHP, Swoole 동시 테스트에 대한 자세한 설명

Go, PHP, Swoole 동시 테스트에 대한 자세한 설명

coldplay.xixi
coldplay.xixi앞으로
2020-07-02 17:55:332496검색
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 프로그래밍 Go, PHP, Swoole 동시 테스트에 대한 자세한 설명

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 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
이 기사는 webhek.com에서 복제됩니다. 침해가 있는 경우 admin@php.cn으로 문의하시기 바랍니다. 삭제