Szukaj…


Ustawianie wartości

Wszystkie wartości w Redis są ostatecznie przechowywane jako typ RedisValue :

//"myvalue" here is implicitly converted to a RedisValue type
//The RedisValue type is rarely seen in practice.
db.StringSet("key", "aValue");

Ustawienie i uzyskanie int

db.StringSet("key", 11021);
int i = (int)db.StringGet("key");

Lub za pomocą StackExchange.Redis.Extensions :

db.Add("key", 11021);
int i = db.Get<int>("key");


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