try {
if(alertDb instanceof JniDB){
((JniDB)alertDb).compactRange(null, null);
String stats = alertDb.getProperty("leveldb.stats");
logger.info(stats);
}
Thread.sleep(24*60*60*1000);
} catch (Exception ex) {
logger.error(ExceptionUtils.getStackTrace(ex));
}
leveldb的delete方法是逻辑删除所以...