mostVisitedAtSigns method
Top length atSigns by access-log entry count. Result map:
atSign → visit count, ordered by descending count.
Implementation
@override
Future<Map<String, int>> mostVisitedAtSigns(int length) async {
return await _accessLogKeyStore.mostVisitedAtSigns(length);
}