Buscar..


Valores de ajuste

Todos los valores en Redis se almacenan finalmente como un tipo RedisValue :

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

Configuración y obtener un int

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

O usando StackExchange.Redis.Extensions :

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


Modified text is an extract of the original Stack Overflow Documentation
Licenciado bajo CC BY-SA 3.0
No afiliado a Stack Overflow