StackExchange.Redis
Clés et valeurs
Recherche…
Définition des valeurs
Toutes les valeurs dans Redis sont finalement stockées en tant que type RedisValue
:
//"myvalue" here is implicitly converted to a RedisValue type
//The RedisValue type is rarely seen in practice.
db.StringSet("key", "aValue");
Définir et obtenir un int
db.StringSet("key", 11021);
int i = (int)db.StringGet("key");
Ou en utilisant StackExchange.Redis.Extensions :
db.Add("key", 11021);
int i = db.Get<int>("key");
Modified text is an extract of the original Stack Overflow Documentation
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow