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");
int의 설정과 취득
db.StringSet("key", 11021);
int i = (int)db.StringGet("key");
또는 Using 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