1

我有一个包含 15 个属性的对象。该对象存储在其自身类型的 List 中,但该列表有点大(330.000 个对象)。我确实将对象设置为存储在 Redis 中,一切都很好。我遇到的问题是从 Redis 获取列表时,我收到 System.OutOfMemoryException (请记住我有足够的内存和磁盘空间)。下面是异常的堆栈跟踪

  at System.String.CreateStringFromEncoding(Byte* bytes, Int32 byteLength, Encoding encoding)
   at System.Text.UTF8Encoding.GetString(Byte[] bytes, Int32 index, Int32 count)
   at ServiceStack.StringExtensions.FromUtf8Bytes(Byte[] bytes)
   at ServiceStack.Redis.RedisClient.GetValue(String key)
   at ServiceStack.Redis.RedisClient.<>c__DisplayClass1c`1.<Get>b__1b(RedisClient r)
   at ServiceStack.Redis.RedisClient.Exec[T](Func`2 action)
   at ServiceStack.Redis.RedisClient.Get[T](String key)
   at KaysisClientCache.RedisCacheProvider.GetCache[T](CacheNames key, Func`2 query) in d:\BBProjects\BBSunucu\KaysisClientCache\RedisCacheProvider.cs:line 32

以下是我设置缓存的方式

redisClient.Set(cacheOb.Name, cacheItem, DateTime.Now.AddMinutes(cacheOb.TimeoutInMin));

这是获取缓存的方式

return query != null ? redisClient.Get<List<T>>(key.ToString()).Where(query).ToList() : redisClient.Get<List<T>>(key.ToString()).ToList();

我使用 ServiceStack.Redis 版本的方式感谢任何帮助。4.0.35.0

4

1 回答 1

1

首先,您可以使用StackExchange.Redis,Service Stack 有一些限制(免费版)。其次,您可以使用 Binary 如下:

    public static byte[] Serialize(object value)
    {
        if (value == null) return null;
        if (!value.GetType().IsSerializable) return null;
        byte[] result;
        using (var stream = new MemoryStream())
        {
            var formatter = new BinaryFormatter();
            formatter.Serialize(stream, value);
            result = stream.ToArray();
        }
        return result;
    }

    public static object Deserialize(byte[] value)
    {
        if (value == null) return null;
        object result;
        using (var stream = new MemoryStream(value))
        {
            var formatter = new BinaryFormatter();
            result = formatter.Deserialize(stream);
        }
        return result;
    }

并且您可以使用 StackExchange.Redis 客户端中的 StringSet 和 StringGet 方法,无论您在 redis 上存储什么,如果您不打算使用该数据对 redis 进行一些操作(请检查:排序集,redis 数据类型)。您可以使用如下;

...
var data = redisDatabase.StringGet(key);
var result = Deserialize(data);
...
var data = (RedisValue)Serialize(value);
var result = redisDatabase.StringSet(key, data, expireTime);
...

重要提示:请确认您有 64 位环境,如果您在 asp.net 中开发,请确认您使用的是 IIS Express x64(如何强制 VS 运行 iis express 64 位)。请从“任务管理器”中检查 Windows 7 32 位应用程序是否带有星号,Windows 8 32 位应用程序是否显示为(32 位)。

我希望它对你有用,问候...

于 2015-01-05T12:56:10.190 回答