Skip to main content
0 votes
0 answers
50 views

I am using an ASP.NET Core 9.0 Web API with C#. My application setup uses L1 Cache using FusionAPI and L2 is Garnet Server for distributed layer of cache. The following code snippet is from my Startup....
Creative Learner's user avatar
0 votes
0 answers
275 views

I have successfully implemented a distributed cache using SQL Server by setting it up as follows: services.AddDistributedSqlServerCache(options => { options.ConnectionString = Configuration....
Ivan Debono's user avatar
  • 1,016
0 votes
0 answers
19 views

We have a .NET 9 apps runing in loadbalanced environment in docker images and kubernetes. We are using distributed cache to share users authentication, sessions, data protection keys etc. between the ...
gtu's user avatar
  • 1,025
3 votes
1 answer
137 views

I was trying to use a Java Record Typed key for an Apache Ignite Cache & got the below error. Anyone else tried using record types & seen this? Does this mean custom handling of marshalling is ...
lmk's user avatar
  • 778
0 votes
1 answer
169 views

I am using redis as my session store in net core. This is a standard setup as per most articles. services.AddStackExchangeRedisCache(options => { options.Configuration = ...
AliK's user avatar
  • 1,107
3 votes
1 answer
2k views

I'm using JDBC-PING discovery for distributed caching in my Keycloak container in AWS ECS. Recently I have updated the Keycloak version from 19 to 25. All the things are working perfectly, except for ...
Kushan Sameera's user avatar
4 votes
2 answers
3k views

I am experimenting with ASPIRE and GARNET, the latter replacing REDIS. According to the documentation: Thus, one can use Garnet with unmodified Redis clients available in most programming languages, ...
ZorgoZ's user avatar
  • 3,758
0 votes
1 answer
95 views

We are running into OOM when we run large number of SQL queries. We are using Apache Ignite 2.15. Pretty standard query code like below, SqlFieldsQuery sqlQuery = new SqlFieldsQuery(query); if (args !=...
Victor's user avatar
  • 1,267
1 vote
0 answers
99 views

Referred below documents but couldn't get the difference - https://codeahoy.com/2017/08/11/caching-strategies-and-how-to-choose-the-right-one/#:~:text=In%20Write%2DBack%2C%20the%20data,called%20write%...
Disha Gupta's user avatar
1 vote
1 answer
325 views

When setting DefaultSlidingExpiration inside AddDistributedSqlServerCache, the override is not respected. builder.Services.AddDistributedSqlServerCache(options => { options....
Matthew S's user avatar
  • 1,040
0 votes
1 answer
125 views

I have an Apache ignite cache that has key as String and value as Set of Boolean and a expiration timestamp. I need to remove the cache item from cache based on this expiration timestamp. How to ...
Shreyas Bhandare's user avatar
0 votes
1 answer
222 views

Application Info - c# .net8 Dapper Use Case - Trying to use MSAL with distributed caching as sql Application works fine locally but when deployed to Kubernetes it throw below error - at Microsoft.Data....
Ishika Jain's user avatar
  • 1,237
1 vote
0 answers
103 views

I am trying to setup endpoints for master and slave. As per the Basics documentation https://stackexchange.github.io/StackExchange.Redis/Configuration.html you can connect to multiple Redis servers, ...
user1263981's user avatar
  • 3,157
0 votes
1 answer
44 views

I am exploring Apache Ignite with Spring Boot, and I have a requirement to ensure data is restored into in-memory even after server reboots, and I need acknowledgements for data insertion. Is there an ...
jarvis's user avatar
  • 25
0 votes
1 answer
294 views

Hope you all are doing well. We are using Infinispan distributed caching using jgroups. The JDBC_PING protocol is used for registering and synchronizing nodes. We are adding one custom column (...
Mayur's user avatar
  • 114

15 30 50 per page
1
2 3 4 5
29