// Vacuum executes VACUUM command in keyDB. If autoVacuumMode is not nil and // different from the current one, the auto_vacuum mode is changed before // VACUUM is executed. func (keyDB *KeyDB) Vacuum(autoVacuumMode string) error { return encdb.Vacuum(keyDB.encDB, autoVacuumMode) }
// Vacuum executes VACUUM command in msgDB. If autoVacuumMode is not nil and // different from the current one, the auto_vacuum mode is changed before // VACUUM is executed. func (msgDB *MsgDB) Vacuum(autoVacuumMode string) error { return encdb.Vacuum(msgDB.encDB, autoVacuumMode) }