Have you applied the latest code? you can check it.
:)
Hi,
The problem was fixed: https://github.com/abpframework/abp/issues/18565
Hi,
How should we check that if we have one redis ?
You can use the distributed cache to set some test data and read it:
public class TestCacheItem
{
public string Value { get; set; }
}
public class TestCacheAppService : ApplicationService, ITestCacheAppService
{
private readonly IDistributedCache<TestCacheItem> _cache;
public TestCacheAppService(IDistributedCache<TestCacheItem> cache)
{
_cache = cache;
}
public Task SetCacheAsync(string key, string value)
{
_cache.Set(key, new TestCacheItem { Value = value }, new DistributedCacheEntryOptions
{
AbsoluteExpirationRelativeToNow = TimeSpan.FromMinutes(5)
});
return Task.CompletedTask;
}
public async Task<string?> GetCacheAsync(string key)
{
var item = await _cache.GetAsync(key);
return item?.Value;
}
}
Is your Redis server running in a docker container or you are using Amazon ElastiCache for Redis Could you please share the dockerfile or docker-compose file and application log file? thanks
Hi,
I have checked but didn't find anything.
I could not reproduce the problem in my local.
Could you provide the full steps to reproduce? I will check it. thanks
Hi,
No such guide, and the app is not a module. This is a sample project using this library.
You can refer to it.
And the Owl.GeneralTree is a library to help you develop tree entities.
It provides some practical methods, such as adding deletions and moving tree nodes.
不过也有一个别的问题,
你可以暂时使用 ProjectManager 做为枚举类的命名空间