我的相关文章参考:
使用前需要先下载安装redis,下载安装后可以在cmd中命令进行基本操作:Download | Redis
添加引用
使用NoGet搜索redis,下载量最多的第一个就好:StackExchange.Redis
添加后using StackExchange.Redis;
个人使用代码
class MyRedis
{
ConnectionMultiplexer m_multiplexer { get; set; } // 连接redis
IDatabase m_db { get; set; } // 数据处理
// MyRedis myRedis = new MyRedis("192.168.112.123:6379,defaultDatabase=0,password=password");
public MyRedis(string connection)
{
m_multiplexer = ConnectionMultiplexer.Connect(connection);
m_db = m_multiplexer.GetDatabase();
}
public bool StringSet(string key, string value)
{
return m_db.StringSet(key, value);
}
public string StringGet(string key)
{
return m_db.StringGet(key);
}
public bool KeyDelete(string key)
{
return m_db.KeyDelete(key);
}
// 设置hash表
public void HashSet(string key, string name, string value)
{
m_db.HashSet(key, name, value);
}
// 获取hash表
public HashEntry[] HashGetAll(string key)
{
return m_db.HashGetAll("用户");
}
}
调用测试
MyRedis myRedis = new MyRedis("127.0.0.1:6379,defaultDatabase=0,password=123456");
Console.WriteLine(myRedis.StringSet("123", "lead"));
Console.WriteLine(myRedis.StringGet("123"));
Console.WriteLine(myRedis.KeyDelete("123"));
Console.WriteLine(myRedis.StringGet("123"));
Console.WriteLine("hash表的处理");
myRedis.HashSet("用户", "1", "fff");
HashEntry[] hashEntries = myRedis.HashGetAll("用户");
foreach (HashEntry hash in hashEntries)
{
Console.WriteLine("name: " + hash.Name);
Console.WriteLine("value: " + hash.Value);
}
或则使用ServiceStack.Redis,也是在NoGet上下载后就可以使用
//在Redis中存储常用的5种数据类型:String,Hash,List,SetSorted set
var client = new RedisClient("127.0.0.1", 6379);
var timeOut = new TimeSpan(0,0,0,30);
client.Add("Test", "Learninghard", timeOut);
client.SetEntryInHash("HashId", "Name", "Learninghard");
client.PushItemToList("StackListId", "2.张三");