Hi guys,

When I activate the debug, I can see sometimes that the same instance
that is present in the object graph is only serialized once and
further calls contain simply a reference to it (Myobject(#12) for
instance).

I'd like to understand how this work in practice.

For instance, we have the following

class A {

   List<B> getBs();
}

class B {
   private A owner;
   ....
}

When I serialize an instance of A, I can see serialization of all
instance of Bs but the "owner" part keeps getting serliazed by
Hessian.

For some other object, I can see that hessian links to an existing
instance that was serialized already. How hessian computes this?

Thanks,
Stéphane

-- 
Large Systems Suck: This rule is 100% transitive. If you build one,
you suck" -- S.Yegge


_______________________________________________
hessian-interest mailing list
[email protected]
http://maillist.caucho.com/mailman/listinfo/hessian-interest

Reply via email to