clear method

void clear()

Clear all cache

Implementation

void clear() {
  _cache.clear();
  _hits = 0;
  _misses = 0;
  _evictions = 0;
}