Package org.eurekaj.plugins.leveldb.dao

Examples of org.eurekaj.plugins.leveldb.dao.LevelDBAccountDao


                  .concurrencyLevel(4)
                  .maximumSize(1000000l)
                  .expireAfterWrite(5, TimeUnit.MINUTES)
                  .build();
     
      accountDao = new LevelDBAccountDao(db);
      alertDao = new LevelDBAlertDao(db);
      alertRecipientDao = new LevelDBAlertRecipientDao(db);
      groupedStatisticsDao = new LevelDBGroupedStatisticsDao(db);
      liveStatisticsDao = new LevelDBLiveStatisticsDao(db, metricHourCache);
      treeMenuDao = new LevelDBTreeMenuDao(db);
View Full Code Here

TOP

Related Classes of org.eurekaj.plugins.leveldb.dao.LevelDBAccountDao

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.