Jump to content

Distributed garbage collection

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Cydebot (talk | contribs) at 03:57, 22 March 2011 (Robot - Moving category Garbage collection (computer science) to Category:Automatic memory management per CFD at Wikipedia:Categories for discussion/Log/2011 March 13.). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

Distributed Garbage Collection (DGC) in computing is a particular case of Garbage Collection where references to an object can be held by a remote client.

DGC algorithms typically rely on a time lease set on the Object; it's the Remote Client's stub object task to periodically renew the lease on the remote object. If the lease is expired, the GC engine can safely assume that the Remote Client is no longer interested in the Object, hence proceed to Garbage Collection.