dbsize method

Future<int> dbsize()

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

Implementation

Future<int> dbsize() async {
  return (await tier1.dbsize()).toInteger().payload;
}