StackExchange.Redis Tutorial
Empezando con StackExchange.Redis
Buscar..
Observaciones
Instalación
Los binarios para StackExchange.Redis están disponibles en Nuget , y la fuente está disponible en Github .
Tareas comunes
Versiones
Versión | Fecha de lanzamiento |
---|---|
1.0.187 | 2014-03-18 |
Uso básico
using StackExchange.Redis;
// ...
// connect to the server
ConnectionMultiplexer connection = ConnectionMultiplexer.Connect("localhost");
// select a database (by default, DB = 0)
IDatabase db = connection.GetDatabase();
// run a command, in this case a GET
RedisValue myVal = db.StringGet("mykey");
Reutilizar multiplexor a través de la aplicación
class Program
{
private static Lazy<ConnectionMultiplexer> _multiplexer =
new Lazy<ConnectionMultiplexer>(
() => ConnectionMultiplexer.Connect("localhost"),
LazyThreadSafetyMode.ExecutionAndPublication);
static void Main(string[] args)
{
IDatabase db1 = _multiplexer.Value.GetDatabase(1);
IDatabase db2 = _multiplexer.Value.GetDatabase(2);
}
}
Opciones de configuración
Conéctese al servidor de Redis y permita comandos de administración (riesgosos)
ConfigurationOptions options = new ConfigurationOptions()
{
EndPoints = { { "localhost", 6379}},
AllowAdmin = true,
ConnectTimeout = 60*1000,
};
ConnectionMultiplexer multiplexer = ConnectionMultiplexer.Connect(options);
o
ConnectionMultiplexer multiplexer =
ConnectionMultiplexer.Connect("localhost:6379,allowAdmin=True,connectTimeout=60000");
Conectarse al servidor de Redis a través de SSL
ConfigurationOptions options = new ConfigurationOptions()
{
EndPoints = { { "localhost", 6380}},
Ssl = true,
Password = "12345"
};
ConnectionMultiplexer multiplexer = ConnectionMultiplexer.Connect(options);
o
ConnectionMultiplexer multiplexer =
ConnectionMultiplexer.Connect("localhost:6380,ssl=True,password=12345");
Modified text is an extract of the original Stack Overflow Documentation
Licenciado bajo CC BY-SA 3.0
No afiliado a Stack Overflow