* @see com.cetsoft.imcache.cache.heap.HeapCache#put(java.lang.Object, java.lang.Object)
*/
public void put(K key, V value) {
V exValue = super.get(key);
super.put(key, value);
TransactionLog log = new PutTransactionLog<K, V>(cache, committer, key, value, exValue);
CacheTransaction.addLog(log);
}