* Constructor. Handles caches initialization.
*/
public StandardStore() {
super();
objectsCache = new HashMapObjectCache(1000, 10000, 0.95);
permissionsCache = new HashMapObjectCache(1000, 10000, 0.95);
locksCache = new HashMapObjectCache(1000, 10000, 0.95);
descriptorsCache = new HashMapObjectCache(1000, 10000, 0.95);
descriptorCache = new HashMapObjectCache(1000, 10000, 0.8);
}