Distributed caching is a cache implementation that uses caches spread across different networked hosts.
Questions tagged [distributed-caching]
424 questions
0
votes
2 answers
Which replication mechanism to chose in distributed system?
Having tough time in understanding few things.
I have two replicated service host (A & B) (may be scaled to a max 3 in future) behind a gateway. Each service host needs to save some data/state (key-value) of its respective host. To avoid SPOF, the…

Rahul
- 326
- 2
- 10
0
votes
1 answer
Fetching all keys from Partitioned Coherent Cache
I am doing a project and my requirement is to basically implement a Coherence Cache Dashboard. The basic idea is to fetch all the keys stored in the Coherent Cache. Is there a command or any other way to fetch all cache keys from distributed…

Codez
- 35
- 7
0
votes
1 answer
Azure redis cache for caching secrets
I wanted to know what is the recommended way to cache and access secrets in distributed setup with service fabric backing our applications and services. Storing secrets in key vault is a known thing, but a distributed cache solution will help with…

ABD
- 1
0
votes
2 answers
Hazelcast persisting and loading data on all nodes
I have a 2 node setup distributed cache setup which needs persistence setup for both members.
I have MapSore and Maploader implemented and the same code is deployed on both nodes.
The MapStore and MapLoader work absolutely ok on a single member…

Samrat
- 1,329
- 12
- 15
0
votes
1 answer
What is the best way to implement Cache tag headers for Distributed cache( based on SQL server ) in Web API
There are cache tag attributes like
vary-by-query
vary-by-route
vary-by-cookie
vary-by-user
vary-by priority
can be used in CSHTML directly for MVC.
What can be the best implementation to achieve the same in ASP.netCore for a cache mechanism…

sntpcvan
- 5
- 1
- 2
0
votes
2 answers
Distributed and replicated data storage for small amounts of data under Windows
We're looking for a good solution to a caching problem. We'd like to distribute a relatively small amount of data (perhaps 10's of GBs) among a cluster of web servers such that:
The data is replicated to all nodes
The data is persistent
The data…

Jacob
- 77,566
- 24
- 149
- 228
0
votes
1 answer
Why Apache Ignite Cache.replace-K-V-V api call performing slow?
We are running Ignite cluster with 12 nodes running on Ignite 2.7.0 on openjdk
1.8 at RHEL platform.
Seeing heavy cputime spent with https://ignite.apache.org/releases/latest/javadoc/org/apache/ignite/IgniteCache.html#replace-K-V-V-
We are…

tarunk
- 549
- 2
- 7
- 17
0
votes
0 answers
Best practice to check user authentication and data sharing across multiple application
I have two web applications. One is developed in MVC 5 and the second is developed in ASP.NET Core 3. Both websites hosted on different domains.
mycmswebsite.com
myshopwebsite.com
My user authentication module is on the shop website and I also…

Imrankhan
- 157
- 1
- 8
0
votes
0 answers
Improving Get operation performance
I am running some comparison tests (ignite vs cassandra) to check how to improve the performance of 'get' operation. The data is fairly straightforward. A simple Employee Object(10 odd fields), being stored as BinaryObject in the cache…

Victor
- 1,207
- 2
- 13
- 21
0
votes
2 answers
Optimal Approach for Caching/Persistence for custom model
I am fairly new to Ignite and trying it out. My usecase is I have a model that needs to be cached/persisted. It's not a traditional pojo model moreover i want to keep the storage and the model decoupled. So i cannot use it in the traditional sense…

Victor
- 1,207
- 2
- 13
- 21
0
votes
1 answer
Sharing hazelcast cache between multiple application and using write behind and read through
Question - Can I share the same hazelcast cluster (cache) between the multiple application while using the write behind and read through functionality using map store and map loaders
Details
I have enterprise environment have the multiple…

user2672763
- 801
- 1
- 9
- 18
0
votes
1 answer
Conflicting field IDs error in Ignite C# thin client
I am trying to store entity in a Ignite-Cache using C# thin client.
I have below scenario
public class A
{
DateTime StartDate { get; set; }
}
public class B:A
{
DateTime StartDate { get; set; }
}
When i am…

Gopu_Tunas
- 174
- 2
- 14
0
votes
1 answer
Dynacache - Caching everything
I have taken over an application that serves around 180 TPS. The responses are always SOAP XML responses with a size of around 24000 bytes. We have been told that we have a dynacache and i can see that we have a cachespec.xml. But I am unable to…

Vishwa Bhat
- 77
- 11
0
votes
1 answer
How to run multiple Apache Ignite nodes on same JVM?
This is my Java implementation of Ignite as a caching layer.
public static void main(String[] args) throws IOException {
Properties conf = getConfiguration();
IgniteConfiguration cfg = new IgniteConfiguration();
CacheConfiguration…

awesomemypro
- 531
- 1
- 11
- 32
0
votes
1 answer
How to use Apache Ignite as a layer between Spring Boot app and MongoDB?
I have a Spring Boot application that uses MongoDB. My plan is to store data in a distributed caching system before it gets inserted into Mongo. If the database fails, the caching will have a queue and send to the DB once it is up. So, the plan is…

awesomemypro
- 531
- 1
- 11
- 32