-
Notifications
You must be signed in to change notification settings - Fork 162
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Set CPU core count #108
Comments
@rhssk Have you tried to set 2 or more CPUs for this box? Does it give any performance improvement? |
For me the difference between 1 and 2 cores is very noticeable, especially after clearing cache and reloading site. |
I'd suggest against it to be automatic if you referer on this: But making it default to 1 and allow to it be changed easily it would be something that is good to add as it would be easier give more cpus if you don't mind the performance hit. |
By default a fresh installation always ends up having just 1 CPU core. It is possible to change that in Vagrant file by adding
config.vm.provider "virtualbox" do |v| v.cpus = X end
Maybe it could be possible to automatize this with something like this?
https://gist.github.com/WIZARDISHUNGRY/2660808
The text was updated successfully, but these errors were encountered: