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