home = Disks.normalize(home);
if (home == null)
home = config.get("pool-home").toString();
long max = config.containsKey("pool-max") ? ((Number) config.get("pool-max")).longValue() : 2000;
pool = new NutFilePool(home, max);
pool = new SynchronizedFilePool(pool);
} catch (Throwable e) {
if (log.isWarnEnabled())
log.warnf("NutDao FilePool create fail!! Blob and Clob Support is DISABLE!! Home="+home, e);
}
return this;