dbsize method

Future<int> dbsize()

Return the number of keys in the currently-selected database.

Implementation

Future<int> dbsize() async {
  return _getInteger(await _execCmd(['DBSIZE']));
}