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.
30 lines
651 B
30 lines
651 B
using StackExchange.Redis;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace CoviDok.BLL
|
|
{
|
|
class RedisProvider : ISessionProvider
|
|
{
|
|
private readonly IDatabase conn;
|
|
public RedisProvider(string host)
|
|
{
|
|
conn = ConnectionMultiplexer.Connect(host).GetDatabase();
|
|
}
|
|
public void Del(string key)
|
|
{
|
|
conn.KeyDelete(key);
|
|
}
|
|
|
|
public string Get(string key)
|
|
{
|
|
return conn.StringGet(key);
|
|
}
|
|
|
|
public void Set(string key, string value)
|
|
{
|
|
conn.StringSet(key, value);
|
|
}
|
|
}
|
|
}
|
|
|