db.StringSet("key", 11021); int i = (int)db.StringGet("key");
或使用StackExchange.Redis.Extensions:
db.Add("key", 11021); int i = db.Get<int>("key");