setHashLoadFactor(parseDouble(paramName, paramValue, StoreParams.HASH_LOAD_FACTOR_DEFAULT));
// Create _segmentFactory
paramName = StoreParams.PARAM_SEGMENT_FACTORY_CLASS;
paramValue = _properties.getProperty(paramName);
SegmentFactory segmentFactory = null;
if(paramValue != null) {
try {
segmentFactory = Class.forName(paramValue).asSubclass(SegmentFactory.class).newInstance();
} catch(Exception e) {
_logger.warn("Invalid SegmentFactory class: " + paramValue);