Last active
April 29, 2020 17:26
-
-
Save samueleresca/1180078ea7fdb57920d423b6a93fc5cd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Collections.Generic; | |
namespace Blog.LRUCacheThreadSafe | |
{ | |
public class LRUCacheLock<T> | |
{ | |
private readonly Dictionary<int, LRUCacheItem<T>> _records = new Dictionary<int, LRUCacheItem<T>>(); | |
private readonly LinkedList<int> _freq = new LinkedList<int>(); | |
private readonly int _capacity; | |
private static readonly object _locker = new object(); | |
public LRUCacheLock(int capacity) | |
{ | |
_capacity = capacity; | |
} | |
public int Capacity => _capacity; | |
public object Get(int key) | |
{ | |
lock (_locker) | |
{ | |
if (!_records.ContainsKey(key)) return null; | |
_freq.Remove(key); | |
_freq.AddLast(key); | |
return _records[key].CacheValue; | |
} | |
} | |
public void Set(int key, T val) | |
{ | |
lock (_locker) | |
{ | |
if (_records.ContainsKey(key)) | |
{ | |
_records[key].CacheValue = val; | |
_freq.Remove(key); | |
_freq.AddLast(key); | |
return; | |
} | |
if (_records.Count >= _capacity) | |
{ | |
_records.Remove(_freq.First.Value); | |
_freq.RemoveFirst(); | |
} | |
_records.Add(key, new LRUCacheItem<T> { CacheKey = key, CacheValue = val }); | |
_freq.AddLast(key); | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment