标签: ruby profiling fork
我试图找到一种方法来计算父进程生成子进程的所有内存使用量。
我们说我有main.rb:
100.times do |i| fork do fib(30) end end Process.waitall
我想计算运行脚本所使用的内存。