MemcacheService syncCache = MemcacheServiceFactory.getMemcacheService();
syncCache.setErrorHandler(ErrorHandlers.getConsistentLogAndContinue(Level.INFO));
//empty the entire cache before repopulating
syncCache.clearAll();
System.out.println("calling BloomCache");
BloomFilter b = new BloomCache().getCachedBloomFilter();
b.populate();
System.out.println("calling TrieCache");
new TrieCache().getCachedTrie("name_first");
new TrieCache().getCachedTrie("name_last");
}