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");
または、 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