码迷,mamicode.com
首页 > Windows程序 > 详细

c# 实现redis读写

时间:2017-04-17 09:31:46      阅读:742      评论:0      收藏:0      [点我收藏+]

标签:删除   try   exists   sts   c#   ide   string   cep   help   

最近做一个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;
        }

    }

 

c# 实现redis读写

标签:删除   try   exists   sts   c#   ide   string   cep   help   

原文地址:http://www.cnblogs.com/java-chanjuan/p/6721208.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!