Package com.sleepycat.db
Class CompactStats
java.lang.Object
com.sleepycat.db.CompactStats
-
Method Summary
Modifier and TypeMethodDescriptionintIf no transaction parameter was specified toDatabase.compact, the number of deadlocks which occurred.intThe number of empty hash buckets that were found the compaction phase.intThe number of levels removed from the Btree or Recno database during the compaction phase.intThe number of database pages reviewed during the compaction phase.intThe number of database pages free during the compaction phase.intThe number of database pages returned to the filesystem.toString()For convenience, the CompactStats class has a toString method that lists all the data fields.
-
Method Details
-
getEmptyBuckets
public int getEmptyBuckets()The number of empty hash buckets that were found the compaction phase. -
getPagesFree
public int getPagesFree()The number of database pages free during the compaction phase. -
getPagesExamine
public int getPagesExamine()The number of database pages reviewed during the compaction phase. -
getLevels
public int getLevels()The number of levels removed from the Btree or Recno database during the compaction phase. -
getDeadlock
public int getDeadlock()If no transaction parameter was specified toDatabase.compact, the number of deadlocks which occurred. -
getPagesTruncated
public int getPagesTruncated()The number of database pages returned to the filesystem. -
toString
For convenience, the CompactStats class has a toString method that lists all the data fields.
-