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.
 
 
 
 
 

35 lines
941 B

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