Hello,<br><br>Consider the following scenario where I have an object:<br><br>class Node {<br>&nbsp;&nbsp; int id;<br>&nbsp;&nbsp; Node next;<br>}<br><br>and I am storing these in memcached, such as:<br><br>Node n;<br>put(<a href="http://n.id">
n.id</a>, n);<br><br>when I get(int) a node, can I trace the reference next, without requiring a map lookup?<br><br>Best Regards,<br>-C.B.<br>