How to speed up a single hhvm shell for some functional tests? #8939
Answered
by
fredemmott
eternalsakura
asked this question in
Q&A
|
Hello, I want to test a lot of hack functions through I don't need hhvm server, I just want to test from the shell. But the startup of hhvm is very slow, it takes about one second to test one. How can I speed up the startup of a single hhvm shell? |
Answered by
fredemmott
Dec 7, 2021
Replies: 1 comment
|
To speed it up, you need a server. It can have a 'CLI server' (communicating with the process you spawn from your shell over a unix socket rather than HTTP requests), but it's still needed. |
0 replies
Answer selected by
fredemmott
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To speed it up, you need a server. It can have a 'CLI server' (communicating with the process you spawn from your shell over a unix socket rather than HTTP requests), but it's still needed.