I have a quad tree that I'd like to be able to use inside of a mapper. I need to perform lookups in the tree hundreds of millions of times.
The tree is built up by scanning through a moderately large file (cf Data structure to perform fast GPS lookups? ). Building the tree takes about 1 second.
One way I see to do it: Serialize the quad tree (how?), add it as a string in the configuration properties, and then have the Mapper class deserialize it. I suspect this will be slow (the serialized tree will probably need about 30MB).
Other suggestions?
Serializableinterface in your tree node and the structure that holds the root. Everything will be taken care of the Java serialization. (Beware it is slower than you would serialize it for yourself). – Thomas Jungblut Feb 5 at 9:07