mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2026-02-09 09:16:41 +08:00
10 lines
273 B
C#
10 lines
273 B
C#
using StackExchange.Redis;
|
|
|
|
namespace Orchard.Redis.Configuration {
|
|
|
|
public interface IRedisConnectionProvider : ISingletonDependency {
|
|
ConnectionMultiplexer GetConnection(string connectionString);
|
|
string GetConnectionString(string service);
|
|
}
|
|
|
|
} |