Ben Oakes wrote: > Where do you think your memory leak is? (Also, why don't you think > Ruby's garbage collecting is handling it? Maybe you have references > to things you're not using anymore?) > I have assigned the useless object references to nil. You can observe, I assigned page = nil page_links = nil doc = nil file_name = nil at some point of the program, where I no longer needed them. Doesn't assigning a ref to nil, completely free its object memory? Isn't nil an empty object? Does nil also claims memory? I am very sorry if my questions doesn't make any sense !!! -- Posted via http://www.ruby-forum.com/.