StackExchange.Redis Samouczek
Rozpoczęcie pracy ze StackExchange.Redis
Szukaj…
Uwagi
Instalowanie
Pliki binarne dla StackExchange.Redis są dostępne w Nuget , a źródło jest dostępne w Github .
Zwykłe zadania
Wersje
Wersja | Data wydania |
---|---|
1.0.187 | 18.03.2014 |
Podstawowe użycie
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");
Ponownie użyj multipleksera w różnych aplikacjach
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);
}
}
Opcje konfiguracji
Połącz się z serwerem Redis i zezwalaj na polecenia administracyjne (ryzykowne)
ConfigurationOptions options = new ConfigurationOptions()
{
EndPoints = { { "localhost", 6379}},
AllowAdmin = true,
ConnectTimeout = 60*1000,
};
ConnectionMultiplexer multiplexer = ConnectionMultiplexer.Connect(options);
lub
ConnectionMultiplexer multiplexer =
ConnectionMultiplexer.Connect("localhost:6379,allowAdmin=True,connectTimeout=60000");
Połącz się z serwerem Redis przez SSL
ConfigurationOptions options = new ConfigurationOptions()
{
EndPoints = { { "localhost", 6380}},
Ssl = true,
Password = "12345"
};
ConnectionMultiplexer multiplexer = ConnectionMultiplexer.Connect(options);
lub
ConnectionMultiplexer multiplexer =
ConnectionMultiplexer.Connect("localhost:6380,ssl=True,password=12345");
Modified text is an extract of the original Stack Overflow Documentation
Licencjonowany na podstawie CC BY-SA 3.0
Nie związany z Stack Overflow