Hi there--
I just updated to the latest build of Backgroundrb and am hitting up
against a memory leak because my workers aren't cleaning up. My code
concurrently pulls a large number of images using RMagick. I thought
the problem was with RMagick but after putting in some garbage
collection code when pulling an image, my code runs well from irb.
When wrapped with backgroundrb, it eventually hangs.
In the old backgroundrb I had a self.delete at the end of do_work to
clean up. Now my setup is a little different:
MiddleMan.worker(:context_worker).process_context(id)
and then
class ContextWorker < BackgrounDRb::MetaWorker
set_worker_name :context_worker
pool_size 1
def create(args = nil)
end
def process_context(id)
do_stuff()
end
end
How do I clean up after process_context().
thanks
--
Mike Bukhin
Interactive Telecommunications Program - '07
_______________________________________________
Backgroundrb-devel mailing list
[email protected]
http://rubyforge.org/mailman/listinfo/backgroundrb-devel