// whatever you might want to do in your constructor, but stay away from Domino objects
}
@Override
public void run() {
Session session = this.getSession();
long collectionBuildNS = 0l;
long documentBuildNS = 0l;
long documentPageNS = 0l;
int collectionSize = 0;
int dbDocs = 0;
try {
Database db = session.getDatabase("", "imdb/movies.bak");
dbDocs = db.getAllDocuments().getCount();
long testStartTime = System.nanoTime();
NoteCollection nc = db.createNoteCollection(false);
nc.selectAllDataNotes(true);
nc.setSelectionFormula("@Begins(Title; \"B\")"); //NTF comment or uncomment this to toggle testing selection formula impact