Redis API存取

RedisClient redisClient = new RedisClient("127.0.0.1", 6379);
[HttpGet]
public int RedisInsert(string Key, string Value)
{
if (!(string.IsNullOrEmpty(Key) && string.IsNullOrEmpty(Value)))
{
redisClient.Set(Key, Value);
var s = redisClient.Get<string>(Key);
if (s != "")
{
return 1;
}
else
{
return 0;
}
}
else
{
return 0;
}
}
[HttpGet]
public string RedisGetStr(string Key)
{
var Val = redisClient.Get<string>(Key);
if (Val != "")
{
return Val;
}
else
{
return null;
}

}

posted @ 2020-08-06 20:46  经常偶尔  阅读(37)  评论(0编辑  收藏  举报