Suche…


Werte einstellen

Alle Werte in Redis werden letztendlich als RedisValue Typ gespeichert:

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

Einrichten und bekommen ein int

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

Oder mit StackExchange.Redis.Extensions :

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


Modified text is an extract of the original Stack Overflow Documentation
Lizenziert unter CC BY-SA 3.0
Nicht angeschlossen an Stack Overflow