package sstable // GetKeyCount returns the estimated number of keys in the SSTable func (r *Reader) GetKeyCount() int { r.mu.RLock() defer r.mu.RUnlock() return int(r.numEntries) }