vServer 上 HHVM 实例的最大内存

vServer 上 HHVM 实例的最大内存

我尝试在 vServer 上使用 hhvm,但内存使用量存在问题。性能很好,但内存使用量非常大。我的 vServer 内存最小为 4GB,最大为 8GB,hhvm 在 1 天后使用了大约 2.4GB 的可用内存 - 但仍然在上升。

server.ini 中是否有选项可以设置 hhvm 进程应使用的最大内存?

我目前正在 hhvm 中运行 Typo3 和 Prestashop

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;
}

和 server.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

相关内容