13 lines
300 B
C#
13 lines
300 B
C#
|
using System.Collections.Generic;
|
|||
|
using StackExchange.Redis;
|
|||
|
|
|||
|
namespace Geekbot.net.Lib.AlmostRedis
|
|||
|
{
|
|||
|
public interface IAlmostRedis
|
|||
|
{
|
|||
|
void Connect();
|
|||
|
IDatabase Db { get; }
|
|||
|
ConnectionMultiplexer Connection { get; }
|
|||
|
IEnumerable<RedisKey> GetAllKeys();
|
|||
|
}
|
|||
|
}
|