I gotta question about efficient serialization with java.io. Efficient mainly in terms of computation-time. What is the fastest way to serialize and deserialize native arrays like long[], int[], short[] etc. to disk?
My arrays are of size between 100mb upto 600mb. What i can do is of course to use my outstream with out.writeInt(...) and out.readInt(...), but i guess there must be a faster (buffered?!) way, as i know i am reading in a complete array.
All i know, is that the framework gives me a DataInput which can be casted to InputStream. The rest is handled by my framework.
Thanks in advance,
Eeth