Tagged Questions

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

learn more… | top users | synonyms

54
votes
10answers
21k views

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 ...
28
votes
3answers
6k views

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 ...
12
votes
6answers
356 views

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 ...
11
votes
6answers
1k views

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
10
votes
2answers
157 views

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, ...
8
votes
1answer
3k views

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 ...
6
votes
2answers
137 views

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 ...
5
votes
2answers
436 views

What does a Terracotta server do when it is used as a backend for EHCache with Hibernate?

My DAL is implemented with Hibernate and I want to use EHCache as its second level cache with its distributed capabilities (for scalability and HA). Seeing as EHCache provides distributed caching ...
5
votes
3answers
1k views

Is Terracotta a distributed cache?

Is Terracotta a distributed cache?
5
votes
3answers
290 views

Any distributed cache systems that allows for tagging content?

I'd like to know if there is any distributed cache systems like memcached, velocity or sharedcache that allows me to tag content with more than just it's name, or that can relate items to eachother, ...
4
votes
2answers
101 views

What does “it deltas memory” mean in the context of Terracotta?

I am reading the book Spring Recipes. I am not able to comprehend certain things said about terracota. The following is a paragraph from the book Terracotta is different than most clustered ...
4
votes
1answer
259 views

Azure Caching ErrorCode<ERRCA0017>:SubStatus<ES0009> Exeeded Quota Limits for this hour

I'm working on an MVC 3 site which is hosted in Windows Azure that is configured to use the DistributedCacheSessionStateStoreProvider for session state which, in turn, uses Azure caching internally. ...
4
votes
4answers
469 views

distributed cache technology

I'm interested in open source messaging and/or distributed cache technologies that satisfy the following requirements. Multiple load-balanced instances of Java web application (probably on Amazon ...
4
votes
6answers
1k views

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 ...
4
votes
6answers
850 views

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 ...
4
votes
3answers
645 views

Is Oracle Coherence stable?

Has anyone used Oracle Coherence? It looks very promising at the roadshows. My concern is whether it's a stable and robust enough to implement mission-critical financial solutions. I'd be grateful ...
3
votes
2answers
176 views

Does EhCache take advantage of all nodes' memory like MemCached?

The MemCached documentation mentions data is distributed across nodes. That's their definition of distributed cached. If a node A needs data that is on node B, data is transferred from B to A. If A ...
3
votes
2answers
89 views

How search engine, say Google's page ranking algorithm work across distributed/multiple machines?

I am new to distributed computing but was wondering how page ranking algorithm works across multiple machines. Like When do they decide data should be replicated (if needed at all), If data is not ...
3
votes
2answers
318 views

erlang: Distributed Hash Table?

Are there any Distributed Hash Table implementations in Erlang? I searched the web and found a number of research papers but I did not find a mature implementation.
3
votes
2answers
393 views

AWS Elastic Beanstalk caching?

I'm looking into hosting a standard Java web app on AWS and the new Elastic Beanstalk (http://aws.amazon.com/elasticbeanstalk/) seems to have most of what we want. The one thing I can't figure out is ...
3
votes
2answers
153 views

Caching using hibernate

I have 2 applications.First one is a web application through which we provision reference data.Second one is an ESB based application where the reference data is used.The reference data changes but ...
3
votes
3answers
1k views

Cache Regions in Velocity/AppFabric using WCF

I have a service based architecture where a web farm full of asp clients hit application server farm of WCF services. Obviously all the database access is done by the WCF services. Now I would like to ...
2
votes
1answer
78 views

EhCache: Replicated vs Distributed Cache Configuration

So in EhCache we have two major classes: Cache; and CacheManager; and Store Under a replicated setup, which of these is actually being replicated? The Cache, the CacheManager or the Store? Calling ...
2
votes
1answer
110 views

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 ...
2
votes
1answer
175 views

Best-practice caching: monolithic vs. fine-grained cache data

In a distributed caching scenario, is it generally advised to use or avoid monolithic objects stored in cache? I'm working with a service backed by an EAV schema, so we're putting caching in place to ...
2
votes
2answers
1k views

Membase or Redis for memory caching system

I have planned to use membase or redis for memmory caching system in my applications. The thing i have mush confusion about which is best for persistence caching system?? can you peoples suggest which ...
2
votes
1answer
383 views

How does EHCache using Terracotta handle eviction from the distributed heap?

We've recently started using EHCache with Terracotta to run a distributed data cache for application data. Let's say that any client node has about 2gb for their heaps, whereas server nodes have 8gb. ...
2
votes
1answer
396 views

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 ...
2
votes
1answer
107 views

Tradeoffs of different website caching architectures

Are there any good articles or blog posts that explore the tradeoffs of different website caching architectures? For example, what are the pros/cons of having a separate cache for each website host ...
2
votes
1answer
163 views

Caching over distributed application on servers

I have a web application that will be distributed over 2 servers and the Database will be on a server other than the 2 servers. so application on each server will access database exists in another ...
2
votes
2answers
555 views

hibernate distributed 2nd level cache options

Not really a question but I'm looking for comments/suggestions from anyone who has experiences using one or more of the following: EhCache with RMI EhCache with JGroups EhCache with Terracotta ...
2
votes
3answers
278 views

wanting a good memory + disk caching solution

I'm currently storing generated HTML pages in a memcached in-memory cache. This works great, however I am wanting to increase the storage capacity of the cache beyond available memory. What I would ...
2
votes
1answer
193 views

Is SharedCache ready for production?

I've been comparing distributed caching solutions for an ASP.NET environment and would like to use something FOSS if possible. I've come across SharedCache and seen it recommended by a few people on ...
2
votes
4answers
362 views

SQL Server 2005, Caches and all that jazz

Background to question: I'm looking to implement a caching system for my website. Currently we're exploring memcache as a means of doing this. However, I am looking to see if something similar exists ...
2
votes
1answer
688 views

Architecture question: client REST API's caching solution

I'm implementing a high traffic client web application that uses a lot of REST API's for its data access layer from the cloud database. I said client because it implements REST and not provides it. ...
2
votes
3answers
441 views

Caching solutions for multi-webserver configuration?

I am looking into caching solutions, for a multi webserver configuration. Thought of memcached as being cheap (free) and proven over the years. Microsoft is also developing a caching solution for ...
1
vote
5answers
120 views

conflict resolution in distributed list

I would like to maintain a list of objects that is distributed between N load balanced servers: whenever a client changes the list on one server, I would like these changes to migrate to the other ...
1
vote
2answers
91 views

Distributed Ehcache working using JTA

I am trying to do some bench-marking of Distributed transaction memory using Terracotta Ehcache (Open Source). I am having some problem understanding its working with JTA. In code I have found that ...
1
vote
1answer
74 views

Strategy for web caching

so i have some pages to cache, around 5 million. Pages very rarely updated I want to serve it by nginx Its impossible to use File System for caching because of different servers. I need some ...
1
vote
1answer
73 views

Using Memcache for Centralization of Distributed Cache Against DB

I am new to memcache and wondering if the following thought works or existed with successful cases or just rubbish going into the bin? Spare me and any guidance is highly appreciated. Here goes... ...
1
vote
2answers
124 views

Gemfire region synchronization

I am using gemfire and currently have a client and a server. Now, the server dinamically creates some subregions in a region and puts some objects in there. I am trying to retrieve the objects with ...
1
vote
1answer
117 views

Are there any issues using Syscache in a multiserver environment as a nhibernate 2nd level cache?

i have just migrated from a single web server environment to a multiwebserver environment and i have been using nhibernate and the syscache 2nd level cache in the past. I know i need to move to a ...
1
vote
1answer
133 views

General Knowledge Question: Network Access Time, Cache Access Time, Disk Access Time

I have written a simulator of a client-server based distributed file system. Now to calculate the average block access time, I want the following: Local Cache Access Time Client to Client Cache ...
1
vote
1answer
149 views

Consistent Hashing: what about rehashing?

As you may know, consistent hashing is a great idea when dealing with DHT. The main idea is to not suffer too much when a new node is added or deleted. From the original Paper: When a machine is ...
1
vote
1answer
480 views

Distributed Lock Service with Windows Server AppFabric Caching

I have an extension method for the Microsoft.ApplicationServer.Caching.DataCache object found in the Windows Server AppFabric SDK that looks like this: using System; using System.Collections.Generic; ...
1
vote
1answer
269 views

Is it possible to do donut caching in Varnish?

I'm an ASP.NET developer trying to learn a little bit more about how caching is done on open-source stacks. I was wondering if it's possible to do donut caching on Varnish like how you can with ...
1
vote
1answer
501 views

EhCache, JPA 2.0 L2 cache, Caching strategy

HI all, I'm new to the world of L2 Caching so please go easy on me :). I have a few questions: 1) What would be the difference between EhCache vs JPA 2.0 L2 Cache? To my understanding, EhCache is ...
1
vote
2answers
594 views

With Hazelcast what is better, one big map or many small maps?

I would like to create a rate-limter system which can rate-limit requests to multiple servers. For this i would like to create counters ( 1 counter for each ip address) this way all the servers can ...
1
vote
3answers
353 views

Ehcache multiple JVM - opensource?

Hey I'm currently running ehcache with spring in tomcat. I have a couple webs servers running their own instance of ehcache which I want to now moved to a shared/distributed cache. Im not looking to ...
1
vote
2answers
800 views

Distributed, persistent cache using EHCache

I currently have a distributed cache using EHCache via RMI that works just fine. I was wondering if you can include persistence with the caches to create a distributed, persistent cache. Alongside ...

1 2