We are running an older version of the application. 5.6.0.0 (ASP.NET CORE MVC & jQuery) and we are running into some caching issues.
AbpZeroTenantFeatures return the wrong entries for a given tenant (Mismatched from what is in the database). Clearning the cache updates a tenants features to the proper list again. Then it will be fine for a period of time and then start returning incorrect features for a tenant until we clear the cache again.
Our developers have put a "fix" in place to bascially invalidate the cache entry as we cannot find the root cause of the issue. (Features in Cache become incorrect for a tenant)
Configuration.Caching.Configure("AbpZeroTenantFeatures", cache =>
{
cache.DefaultAbsoluteExpireTime = TimeSpan.FromSeconds(1);
cache.DefaultSlidingExpireTime = TimeSpan.FromSeconds(1);
});
Does this ring any bells? I know we are out of date, but if there is a patch we can put in place, that would be highly useful.