Add value in cache only it the element doesn't exist Returns true when element is added otherwise false
@override bool add(K k, V v) { if(_cache.containsKey(k)){ return false; } _cache[k] = v; return true; }