public void fastRoundTrip()
throws IOException, ClassNotFoundException {
TestArray list = new TestArray();
ByteArrayOutputStream os = new ByteArrayOutputStream();
FSTObjectOutput objOut = new FSTObjectOutput(os);
objOut.writeObject(list);
objOut.close();
ByteArrayInputStream is = new ByteArrayInputStream(os.toByteArray());
FSTObjectInput objIn = new FSTObjectInput(is);
// objIn.setReadExternalReadAHead(16000);
TestArray res = (TestArray) objIn.readObject();