System.out.println("Time to load content without indexing: " + first);
System.out.println("Time to load content and updating indexes: " + second + " (" + percentOfLoading
+ "% of loading w/o indexing)");
Duration loadingDiff = second.subtract(first);
System.out.println("Time to update indexes during loading: " + loadingDiff);
int percentChange = (int)((((third.floatValue() - loadingDiff.floatValue()) / loadingDiff.floatValue())) * 100.0f);
if (percentChange >= 0) {
System.out.println("Time to re-index all content: " + third + " (" + percentChange
+ "% more than indexing time during loading)");
} else {
System.out.println("Time to re-index all content: " + third + " (" + percentChange