You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

34 lines
864 B

using StackExchange.Redis;
using System;
using System.Collections.Generic;
using System.Text;
namespace CoviDok.BLL
{
class RedisProvider : ISessionProvider
{
// The Multiplexer is thread safe, connections are not
private readonly ConnectionMultiplexer muxer;
public RedisProvider(string host)
{
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);
}
}
}