Поиск…


Значения значений

Все значения в Redis в конечном итоге сохраняются как тип RedisValue :

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

Настройка и получение int

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

Или используя StackExchange.Redis.Extensions :

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


Modified text is an extract of the original Stack Overflow Documentation
Лицензировано согласно CC BY-SA 3.0
Не связан с Stack Overflow