You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This may be a case of me missing something trivial, but I can't seem to figure it out.
I'm working on a POC for the HybridCache for one of our internal libraries and I want to allow consumers the ability to decide whether they want to enable or disable the local cache. I'm using Couchbase as the L2 cache and I have a pretty basic configuration
[HttpGet(Name="GetWeatherForecast")]publicasyncTask<IEnumerable<WeatherForecast>>Get(){returnawait_hybridCache.GetOrCreateAsync("weather-forecast",factory:async _ =>awaitGetData());}privatestaticasyncTask<WeatherForecast[]>GetData(){awaitTask.Delay(1000*5);// wait for for 5 secondsvardata=Enumerable.Range(1,5).Select(index =>newWeatherForecast{Date=DateOnly.FromDateTime(DateTime.Now.AddDays(index)),TemperatureC=Random.Shared.Next(-20,55),Summary=Summaries[Random.Shared.Next(Summaries.Length)]}).ToArray();returndata;}
Expected Behavior
When I call the GetOrCreateAsync() method, the initial call fetches the data from the factory as expected. The data is correctly populated to Couchbase as well
On subsequent calls, I expect the L1 cache to be disabled and the data fetched from the L2 cache, but what is happening is that the data is fetched from the factory all the time and I get these warnings on standard output
warn: Microsoft.Extensions.Caching.HybridCache
Cache backend data rejected: InvalidData.
Steps To Reproduce
No response
Exceptions (if any)
No response
.NET Version
9.0.100
Anything else?
No response
The text was updated successfully, but these errors were encountered:
Is there an existing issue for this?
Describe the bug
This may be a case of me missing something trivial, but I can't seem to figure it out.
I'm working on a POC for the HybridCache for one of our internal libraries and I want to allow consumers the ability to decide whether they want to enable or disable the local cache. I'm using Couchbase as the L2 cache and I have a pretty basic configuration
Expected Behavior
When I call the
GetOrCreateAsync()
method, the initial call fetches the data from the factory as expected. The data is correctly populated to Couchbase as wellOn subsequent calls, I expect the L1 cache to be disabled and the data fetched from the L2 cache, but what is happening is that the data is fetched from the factory all the time and I get these warnings on standard output
Steps To Reproduce
No response
Exceptions (if any)
No response
.NET Version
9.0.100
Anything else?
No response
The text was updated successfully, but these errors were encountered: