// Initialize the instance variables:
this.server_name = server_name;
this.storedir = storedir;
this.entries = new Hashtable() ;
this.sweeper = new StoreManagerSweeper(this) ;
this.lru = new AsyncLRUList();
this.maxLoadedStore = (max_loaded_store < 10) ? 10 : max_loaded_store;
this.storeSizeLimit = (store_size_limit < 100) ? -1 : store_size_limit;
this.loadedStore = 0;
try {