From: Cedric Foll Date: 2003-03-05T22:39:20+09:00 Subject: find a memory leak Hi, i've got a script which do something like that: for i in 0...NB_THREAD th < Thread.new(i) { |nb| while site[nb] = pop.liste do check(site[nb]) end } end for i in 0...NB_THREAD th[i].join end The scrit run several minutes (liste is huge), and the memory consumption increase a lot during execution. So i have to find which object is growing up. How can i do that ? (ie find the size of all object used) Regards