vote up 2 vote down star

I already found a solution for "Most unixes" via cmdline "cat /proc/cpuinfo", but a pure-ruby solution would be nicer...

flag

4 Answers

vote up 5 vote down check

Surely if you can cat it, you can open, read and close it using the standard features of the language without resorting to a system()-type call.

You may just need to detect what platform you're on dynamically and either:

  • use the /proc/cpuinfo "file" for Linux; or
  • communicate with WMI for Windows.

That last line can use:

require 'win32ole'
wmi = WIN32OLE.connect("winmgmts://")
info = wmi.ExecQuery ("select * from Win32_ComputerSystem")

Then use info's NumberOfProcessors item.

link|flag
Or possibly NumberOfProcessors. ;-) – Stobor May 21 at 6:00
Thanks, I hoped it would be something easy, for now I will skip this feature :) – grosser May 21 at 6:08
Thanks, @Stobor, fixed. – paxdiablo May 21 at 6:10
vote up 1 vote down

on Mac:

thiago-pradis-macbook:~ tchandy$ hwprefs cpu_count

2

link|flag
vote up 5 vote down
$ gem install facter
$ irb
irb(main):001:0> require 'rubygems'
=> true
irb(main):002:0> require 'facter'
=> true
irb(main):003:0> Facter.loadfacts
=> true
irb(main):004:0> puts Facter.sp_number_processors
2
=> nil
irb(main):005:0>

This facter gem is the best, it's not platform specific and designed to do this exact thing.

link|flag
nice solution, ill check it out, since i am working on a public library i did not want to add an extra dependency for something this trivial – grosser May 27 at 5:09
vote up 3 vote down

with JRuby you can check it with the following Java code:

 Runtime runtime = Runtime.getRuntime();   
 int numberOfProcessors = runtime.availableProcessors();
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.