shengxinjing / vue3-vs-vue2

《前端会客厅第一期代码》和尤大聊vue3的 提升

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

小事:README 里关于wrk的注释有误。

bluezhan opened this issue · comments

// vue2 12个进程,300个并发,压19秒
➜  ~ wrk -t12 -c400 -d10s http://localhost:9092/
// vue3 12个进程,300个并发,压19秒
➜  ~ wrk -t12 -c400 -d10s http://localhost:9093/

应该为:

// vue2 12个进程,400个并发,压10秒
➜  ~ wrk -t12 -c400 -d10s http://localhost:9092/
// vue3 12个进程,400个并发,压10秒
➜  ~ wrk -t12 -c400 -d10s http://localhost:9093/