mostVisitedKeys method
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);
}