Finds all the Query that starts with the given prefix
prefix
List<Query> getQueriesWithPrefix(String prefix) { return cache.queries .where((query) => query.key.startsWith(prefix)) .toList(); }