I am using Larvel 4.1. After creating a new server in accordance with this site ( http://www.tienle.com/2014/04-25/setting-nginx-hhvm-php-percona-laravel-projects.html ) everything works much faster. I have a speed of 40%! The only problem I'm still facing is perf.map files. Because the Laravel Queue runs inside the supervisor every 2 seconds, the perf.m.mar file is created with a size of 2 MB. You can imagine what will happen in a week. Sometimes a website has a lot of traffic and files grow faster. Once the system crashed due to a full hard drive. Hope someone experienced this problem before. I searched a lot, but could not find the answers. I can provide each configuration file to someone to solve this problem. Please, help!
In /etc/hhvm/php.iniadd:
/etc/hhvm/php.ini
hhvm.keep_perf_pid_map = 0 hhvm.perf_pid_map = 0 hhvm.perf_data_map = 0
This should stop creating and saving files.