Hello,

Consider the following scenario where I have an object:

class Node {
   int id;
   Node next;
}

and I am storing these in memcached, such as:

Node n;
put(n.id, n);

when I get(int) a node, can I trace the reference next, without requiring a
map lookup?

Best Regards,
-C.B.

Reply via email to