mostVisitedKeys method

  1. @override
Future<Map<String, int>> mostVisitedKeys(
  1. int length
)
override

Top length lookup keys by access-log entry count. Result map: lookup-key → visit count, ordered by descending count.

Implementation

@override
Future<Map<String, int>> mostVisitedKeys(int length) async {
  return await _accessLogKeyStore.mostVisitedKeys(length);
}