StackExchange.Redis
Nycklar och värden
Sök…
Ställa in värden
Alla värden i Redis lagras slutligen som en RedisValue
typ:
//"myvalue" here is implicitly converted to a RedisValue type
//The RedisValue type is rarely seen in practice.
db.StringSet("key", "aValue");
Ställa in och få en int
db.StringSet("key", 11021);
int i = (int)db.StringGet("key");
Eller använda StackExchange.Redis.Extensions :
db.Add("key", 11021);
int i = db.Get<int>("key");
Modified text is an extract of the original Stack Overflow Documentation
Licensierat under CC BY-SA 3.0
Inte anslutet till Stack Overflow