// FileInputStream fis = new FileInputStream(file);
DbCache cache = new DbCache();
NoteCoordinate.setDbCache(cache);
NoteList notelist2 = new NoteList(cache, NoteList.getComparator("Title"));
byte[] loaded = storeTest.readBinary("imdbNoteList");
// byte[] loaded = new byte[byteSize];
// fis.read(loaded);
notelist2.loadByteArray(loaded);
timelog("Done reloading " + notelist2.size() + " sorted notes. Iterating...");