for (Map.Entry<String, Integer> e : map.entrySet()) {
list.add(new CoderImpact(e.getKey(), e.getValue(), count));
}
// Sort
Collections.sort(list, new CoderImpactComparator());
// Set Cache
try {
Cache.set(cacheKey, list, cacheExpiration);
} catch (Throwable t) {