StackExchange.Redis
कुंजी और मूल्य
खोज…
मान सेट करना
Redis में सभी मान अंततः RedisValue
प्रकार के रूप में संग्रहीत किए जाते हैं:
//"myvalue" here is implicitly converted to a RedisValue type
//The RedisValue type is rarely seen in practice.
db.StringSet("key", "aValue");
सेट करना और एक इंट प्राप्त करना
db.StringSet("key", 11021);
int i = (int)db.StringGet("key");
या StackExchange.Redis.Extensions का उपयोग कर:
db.Add("key", 11021);
int i = db.Get<int>("key");
Modified text is an extract of the original Stack Overflow Documentation
के तहत लाइसेंस प्राप्त है CC BY-SA 3.0
से संबद्ध नहीं है Stack Overflow