Remove all dependencies on redis
This commit is contained in:
parent
2e501008df
commit
33b17b373f
11 changed files with 129 additions and 77 deletions
9
Geekbot.net/Lib/KvInMemoryStore/IKvInMemoryStore.cs
Normal file
9
Geekbot.net/Lib/KvInMemoryStore/IKvInMemoryStore.cs
Normal file
|
@ -0,0 +1,9 @@
|
|||
namespace Geekbot.net.Lib.KvInMemoryStore
|
||||
{
|
||||
public interface IKvInMemoryStore
|
||||
{
|
||||
public T Get<T>(string key);
|
||||
public void Set<T>(string key, T value);
|
||||
public void Remove(string key);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue