> Why cache to XML if you're looking for super performance? Wouldn't > serialized objects be even quicker? I haven't a clue how xjavadoc works
That's also a good idea. Gee, why is it never me who comes up with all these good ideas? Put simply, xjavadoc consists of two parts. -A parser and "API" classes (like XClass, XMethod and so on). The parser instantiates and populates/connects the API classes. These Xxxx objects have a lot of references between each other, so serializing an instance of an XClass might drag a lot of other objects with it. We should therefore make references to XClass transient. Then I guess we could lazily deserialize the transient fields. Aslak _______________________________________________ Xdoclet-devel mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/xdoclet-devel
