optimize method
Optimize (compact/prune) a table.
Implementation
Future<void> optimize({required String table, List<String>? namespace}) async {
await room.sendRequest("database.optimize", {"table": table, "namespace": namespace});
}
Optimize (compact/prune) a table.
Future<void> optimize({required String table, List<String>? namespace}) async {
await room.sendRequest("database.optimize", {"table": table, "namespace": namespace});
}