I already found a solution for "Most unixes" via cmdline "cat /proc/cpuinfo", but a pure-ruby solution would be nicer...
|
feedback
|
This facter gem is the best, it's not platform specific and designed to do this exact thing. | |||||||||
feedback
|
|
with JRuby you can check it with the following Java code:
| |||||
feedback
|
|
I am currently using this, which covers all os. https://github.com/grosser/parallel/blob/master/lib/parallel.rb#L63
| |||||
feedback
|
|
Surely if you can You may just need to detect what platform you're on dynamically and either:
That last line can use:
Then use info's NumberOfProcessors item. | |||||||
feedback
|
|
Here is an implementation for Linux, OSX, Windows and BSD: https://gist.github.com/1009994 | |||
|
feedback
|
|
@grosser: when /linux/ `grep -c processor /proc/cpuinfo`.to_i http://www.partmaps.org/era/unix/award.html#cat | ||||
|
feedback
|