|
|
@ -7,23 +7,27 @@ namespace CoviDok.BLL |
|
|
|
{ |
|
|
|
class RedisProvider : ISessionProvider |
|
|
|
{ |
|
|
|
private readonly IDatabase conn; |
|
|
|
// The Multiplexer is thread safe, connections are not
|
|
|
|
private readonly ConnectionMultiplexer muxer; |
|
|
|
public RedisProvider(string host) |
|
|
|
{ |
|
|
|
conn = ConnectionMultiplexer.Connect(host).GetDatabase(); |
|
|
|
muxer = ConnectionMultiplexer.Connect(host); |
|
|
|
} |
|
|
|
public void Del(string key) |
|
|
|
{ |
|
|
|
IDatabase conn = muxer.GetDatabase(); |
|
|
|
conn.KeyDelete(key); |
|
|
|
} |
|
|
|
|
|
|
|
public string Get(string key) |
|
|
|
{ |
|
|
|
IDatabase conn = muxer.GetDatabase(); |
|
|
|
return conn.StringGet(key); |
|
|
|
} |
|
|
|
|
|
|
|
public void Set(string key, string value) |
|
|
|
{ |
|
|
|
IDatabase conn = muxer.GetDatabase(); |
|
|
|
conn.StringSet(key, value); |
|
|
|
} |
|
|
|
} |
|
|
|