NewLife.Redis icon indicating copy to clipboard operation
NewLife.Redis copied to clipboard

High performance redis client, support NETCore/. NET4. 0/. NET4. 5. It is specially optimized for big data and message queue. The average daily consumption of online single application is 10 billion....

Results 7 NewLife.Redis issues
Sort by recently updated
recently updated
newest added

11:06:20.030 8 Y - System.NullReferenceException: Object reference not set to an instance of an object. at NewLife.Caching.Models.PendingItem.Parse(Object[] vs) in F:\jovi\gitProjects\NewLife.Redis\NewLife.Redis\Models\PendingItem.cs:line 28 at NewLife.Caching.RedisStream`1.Pending(String group, String startId, String endId, Int32 count)...

Hi @nnhy, @Soar360, do plan to release a NewLife.Redis version targeting `net8.0` soon? Cheers

enhancement

Hi, We've been happy and grateful users of this library. Thanks @Soar360 for translating your readme back then [#84](https://github.com/NewLifeX/NewLife.Redis/issues/84) though I noticed it's not been updated since. NOTE: On NuGet...

help wanted
good first issue

1: var hash = redis.GetDictionary("vm") as RedisHash; var idic = new VmModel { Id = Guid.NewGuid(), Name = "VM1" }.ToDictionary(); hash.HMSet(idic); var dic = hash.GetAll(); //throw exception " System.Exception: 已到达字符串结尾"....

我这里有一个简单的封装用于获取Redis Hash类型存储的单个记录,如下 ``` C# public T HashGetOne(string key, string field) { RedisHash hash = GetHashMap(key); var result = hash.HMGet(field); return result[0]; } ``` 但是该方法会偶尔抛出异常 Object reference not set to aninstance...

版本: 5.6.2024.508 我的实体里面有数组字段且有默认值为空数组的情况 public string[] ProjectIds { get; set; } = []; 获取缓存数据 _icache.Get(key); 的时候 ProjectIds 数据永远是空数组。 我把默字段默认空数据去掉后就可以获取到数据了

bug