首页 > 编程 > C# > 正文

C#实现redis读写的方法

2020-01-24 00:40:43
字体:
来源:转载
供稿:网友

最近做一个C#项目,需要对radis进行读写。

首先引入System.Configuration,如下

实现代码如下:

public class ManualSuggestRedisHelper {  private static IRedisClient GetManualSuggestClient()  {   var config = ConfigurationManager.ConnectionStrings["REDIS_MANUAL_VIDEO_LIST"].ConnectionString.Split(':');   if (config.Length == 3)   {    int dbNum = int.Parse(config[2]);    return new RedisClient(config[0], int.Parse(config[1]), db: dbNum);   }   else   {    return new RedisClient("192.168.86.15", 6379, db: 8);   }  }   public static void AddRangeToList(string key, JSONObject value)  {   try   {    using (var redis = GetManualSuggestClient())    {     redis.SetEntry(key, value.ToString());    }   }   catch (Exception ex)   {    TxtLogger.DumpException(ex);   }  }   public static void AddRangeToSuggestList(string key, List<string> value)  {   try   {    using (var redis = GetManualSuggestClient())    {     redis.AddRangeToList(key, value);    }   }   catch (Exception ex)   {    TxtLogger.DumpException(ex);   }  }   public static void Remove(string key)  {   try   {    using (var redis = GetManualSuggestClient())    {     redis.Remove(key);    }   }   catch (Exception ex)   {    TxtLogger.AppendStringToTextFile("删除redis key存在异常――" + ex);   }  }   public static bool ExistsRedis(string key)  {   try   {    using (var redis = GetManualSuggestClient())    {     List<string> isExists = redis.GetAllItemsFromList(key);     if (isExists != null && isExists.Count() > 0)     {      return true;     }    }   }   catch (Exception ex)   {    TxtLogger.DumpException(ex);   }   return false;  }  }

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持武林网。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表