How to speed up a single hhvm shell for some functional tests? #8939
-
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? |
Beta Was this translation helpful? Give feedback.
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. |
Beta Was this translation helpful? Give feedback.
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.