/**
  * Start the CachedDirectoryLookupService.
  *
  * <p>It is thread safe.
  */
 @Override
 public void start() {
   if (isStarted.compareAndSet(false, true)) {
     super.start();
     initCacheSyncTask();
   }
 }