Package org.rocksdb
Class ColumnFamilyMetaData
java.lang.Object
org.rocksdb.ColumnFamilyMetaData
The metadata that describes a column family.
-
Method Summary
Modifier and TypeMethodDescriptionlongThe number of files in this column family.levels()The metadata of all levels in this column family.byte[]name()The name of the column family.longsize()The size of this column family in bytes, which is equal to the sum of the file size of itslevels().
-
Method Details
-
size
public long size()The size of this column family in bytes, which is equal to the sum of the file size of itslevels().- Returns:
- the size of this column family
-
fileCount
public long fileCount()The number of files in this column family.- Returns:
- the number of files
-
name
public byte[] name()The name of the column family.- Returns:
- the name
-
levels
The metadata of all levels in this column family.- Returns:
- the levels metadata
-