<?xml version="1.0" encoding="windows-1252"?>
<node id="1014120" title="Re: Timing of garbage collection" created="2013-01-18 15:40:16" updated="2013-01-18 15:40:16">
<type id="11">
note</type>
<author id="333489">
muba</author>
<data>
<field name="doctext">
&lt;p&gt;As long as you keep references around to your objects, you'll be able to access them through those references, wherever they may live. Could be deep down some data structure, or maybe even in a closure &amp;mdash; as long as parts of your code still have access to those references, those parts of the code will have access to the objects.&lt;/p&gt;

&lt;p&gt;Ergo, as soon as an object is ready for garbage collection (i.e., you no longer have references pointing to them), no part of your code will be able to access those objects &lt;small&gt;(I'm cutting corners here, because there's still the thing of weak references, but that's irrelevant to the discussion)&lt;/small&gt;.

&lt;p&gt;So if Outside Force throws an object index at you that has been used before &lt;b&gt;and&lt;/b&gt; it is meant to represent the same object as before, &lt;b&gt;then&lt;/b&gt; I hope you still have a reference to that object. However, if the non-new object index is a new object, and you don't have a reference to the old object around any more, then there's no problem at all. Whether or not perl has already garbage collected the old object, &lt;i&gt;you&lt;/i&gt; won't be able to access it any more anyway.&lt;/p&gt;

&lt;p&gt;So in the end, it's all your responsibility.&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;Keep references to those objects that you will need again later, and you'll be able to get to those objects;&lt;/li&gt;
  &lt;li&gt;Remove references to the objects that you're done with. Then, even when the Outside Force reuses an old index, you'll still be forced to create a fresh new object because as far as your code is concerned, the old object isn't anywhere to be found any longer&lt;/li&gt;
&lt;/ul&gt; </field>
<field name="root_node">
1014100</field>
<field name="parent_node">
1014100</field>
</data>
</node>
