Redis API存取

2023-03-10,,

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;
}

}

Redis API存取的相关教程结束。

《Redis API存取.doc》

下载本文的Word格式文档,以方便收藏与打印。