
Probé hhvm en mi vServer y tengo problemas con la memoria utilizada. El rendimiento es excelente, pero el consumo de memoria utilizada es horrible. Tengo un vServer con un mínimo de 4 GB y un máximo de 8 GB de memoria y hhvm usa después de 1 día aproximadamente 2,4 GB de memoria disponible, pero sigue aumentando.
¿Existe una opción en server.ini para establecer la memoria máxima que debería usarse para el proceso hhvm?
Actualmente estoy ejecutando Typo3 y Prestashop dentro de hhvm
location ~ \.php$ {
try_files $uri =404;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
fastcgi_pass unix:/var/run/hhvm/hhvm.sock;
}
y servidor.ini
; php options
pid = /var/run/hhvm/pid
; hhvm specific
;hhvm.server.port = 9000
hhvm.server.file_socket = /var/run/hhvm/hhvm.sock
hhvm.server.type = fastcgi
hhvm.server.default_document = index.php
hhvm.log.use_log_file = true
hhvm.log.file = /var/log/hhvm/error.log
hhvm.repo.central.path = /var/run/hhvm/hhvm.hhbc