Zoeken…


Waarden instellen

Alle waarden in Redis worden uiteindelijk opgeslagen als een RedisValue type:

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

Een int instellen en krijgen

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

Of met StackExchange.Redis.Extensions :

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


Modified text is an extract of the original Stack Overflow Documentation
Licentie onder CC BY-SA 3.0
Niet aangesloten bij Stack Overflow