webman 与传统的php-fpm对比 效果

部分代码

 

传统php-fpm 方式运行

public function actionTest(){
        echo 'jkj';
    }

webman 方式运行

public function all(Request $request){
        $default_uid = 29;
        $uid = $request->get('id', $default_uid);
        $name = Db::table('user')->where('id', $uid)->value('name');
        return response("hello $name");
    }

代码对比一下,能看出,传统的写简单的一句,webman还写查询数据表的数据(当前数据有10万条记录)

运行结果

传统php-fpm 花50ms

webman 与传统的php-fpm对比 效果_第1张图片

 webman方式 花了4ms

webman 与传统的php-fpm对比 效果_第2张图片

 由上面的运行的结果来看,不难看出,传统的php-fpm花的时间长好多

webman快

你可能感兴趣的:(wokerman,webman,workman)