I would like to know how much physical memory is available on the system, excluding any swap. Is there a method to get this information in Ruby?
|
If you are using linux,You usually use a "free" command to find physical memory ie RAM details on the system output = %x(free) output will look slightly like the following string
You can extract the information you need using simple string manipulations like
|
|||||
|
|
|
Well, the Unix command "top" doesn't seem to work in Ruby, so try this:
This "seems" correct. I don't guarantee it. Also, this takes a lot more time than the system will so by the time it's finished the physical memory would have changed. |
|||
|
|
|
Slightly slicker version of AndrewKS's answer:
|
|||
|
|
|
You can use this gem to get various system info http://threez.github.com/ruby-vmstat/ |
|||
|
|