Questions tagged [distributed-caching]

Distributed caching is a cache implementation that uses caches spread across different networked hosts.

424 questions
83
votes
11 answers

Memcached with Windows and .NET

Is there anyone already implement memcached for production use in Windows environment? Because many blogs that I've read, it's not recommended to run memcached in Windows especially for production use, for example running memcached on windows. And…
Funky81
  • 1,679
  • 4
  • 18
  • 24
33
votes
3 answers

MS Velocity vs Memcached for Windows?

I've been paying some attention to Microsoft's fairly recent promoting of Velocity as a distributed caching solution that would compete with the likes of Memcached. I've been looking for a 64bit version of Memcached for Windows for some time now…
RobertTheGrey
  • 8,645
  • 5
  • 32
  • 45
24
votes
8 answers

Choosing a distributed shared memory solution

I have a task to build a prototype for a massively scalable distributed shared memory (DSM) app. The prototype would only serve as a proof-of-concept, but I want to spend my time most effectively by picking the components which would be used in the…
mindas
  • 26,463
  • 15
  • 97
  • 154
21
votes
1 answer

Comparison of memcache, redis and ehcache as distributed caching framework

One of the decisions I need to make is what caching framework to use in my system. With so many to choose from, I am currently investigating redis, ehcache and memcached. Can anyone point to performance benchmarks of these three particular…
user308808
21
votes
3 answers

In-memory cache VS. centralized cache in a distributed system

We're currently looking for the most suitable solution for accessing critical data on a distributed system, and we're considering whether to use in memory caching, versus a centralized cache. Some information about the data we wish to…
Ron
  • 1,806
  • 3
  • 18
  • 31
15
votes
2 answers

Clustered hibernate cache with ehcache: nonstrict vs. strict read write

What is the real difference between nonstrict-read-write and read-write? I can read ehcache and Hibernate docs, but as far as I can see they only say that "read-write is better if you do updates". I find it unsatisfactory. I may have an issue with…
Konrad Garus
  • 53,145
  • 43
  • 157
  • 230
14
votes
6 answers

What are the pros and cons of a distributed second level cache versus focusing on tuning database

we have a website that uses nhibernate and 2nd level cache. We are having a debate as one person wants to turn off the second level cache as we are moving to a multi webserver environment (with a load balancer in front). One argument is to get…
leora
  • 188,729
  • 360
  • 878
  • 1,366
14
votes
8 answers

Distributed Caching

I am looking for a java distributed caching solution. We would like features likes: Distributed Auto-Discovery Redundancy Non-Centralized We've analyzed a framework like TerraCotta which seems to be everything we would ever want from a caching…
Claude Houle
  • 41,064
  • 8
  • 33
  • 42
11
votes
0 answers

Distributed caching with .NET 2.0+?

What is the best approach to implement distributed caching with .NET? Edit: I was looking for a general caching schema for internal and external applications
Toran Billups
  • 27,111
  • 40
  • 155
  • 268
11
votes
2 answers

Caching all users in ASP.NET

I am working on a web app in ASP.NET/C# which needs to be scalable to handle the high user load (will probably run in a web farm). Since it will cater to a high number of users, around 1 Million plus, but number of online users would be around…
AsifQadri
  • 2,388
  • 1
  • 20
  • 30
11
votes
1 answer

Distributed caching for large objects

I want to share a very large object e.g. in orders of megabytes or even several gigabytes, between a set of machines. The object will be written once but may be read many times. Maybe a naive approach is to use a ceneteralized storage like redis.…
10
votes
4 answers

Redis - How to configure custom conversions

In spring-data-redis, How do we need configure custom converters that can be auto-wired/injected from Spring boot application or configuration. I read about @ReadingConverter and @WritingConverter from spring data redis documentation. From this…
Pachai
  • 101
  • 1
  • 1
  • 4
10
votes
2 answers

has anyone produced an in-memory GIT repository?

I would like to be able to take advantage of the benefits of GIT (and its workflows), but without the cost of disk access - I just would like to leverage the distributed revision control capabilities of GIT to produce something like a hybrid of…
Andrew Matthews
  • 3,006
  • 2
  • 29
  • 42
9
votes
3 answers

Is it possible to implement distributed caching using of Ehcache without Terracotta Enterprise Suite?

I try to find how to implement distributed caching for applications. Ehcache already used for caching in my project, that's why I search how to solve this issue using it. But, unfortunately, it seems, that Terracotta Enterprise Suite is needed for…
Gadget
  • 474
  • 1
  • 5
  • 12
9
votes
1 answer

AppFabric Cache server and web application on same physical machine

I am considering using AppFabric caching feature for one of our projects. We have a need for distributed caching feature and it seems AppFabric is a good solution. However, I have a few questions which I hope will be answered here. We are…
buhtla
  • 2,819
  • 4
  • 25
  • 38
1
2 3
28 29