distributed-caching

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 really like is: memcached semantics (i.e. not reliable, just a cache) memcached api preferred (but not required) large in-memory first leve...

ideas for a distributed cache proxy server

Hi everyone! I am implementing, a distributed cache proxy server.I have an idea of the HTTP and related stuff, so i am rather concentrating on the sub part "Distributed data storage". From some search on web i found that this could be done using Distributed Hash Tables(DHT). I was wondering if there exists some kind of library for this...

Oracle Coherence w/ ASP.NET application

Is it possible to use Oracle Coherence to provide distributed caching to an ASP.NET application? We would like to use Coherence to scale out an ASP.NET application which does not have distributed caching. Alternatives would be memcached, etc. However, we are considering Coherence since we already have licensing/expertise in that area. ...

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 this, if the cache was persistent, would it load from the file store, then bootstrap from the cache cluster? Basically, what I want is: Cac...

Is Terracotta a distributed cache?

Is Terracotta a distributed cache? ...

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 memcached and GIT. (preferably in .NET) Is there such a beast out there? ...

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 Gigaspaces Data Grid A bit of background: our applications is read only for the most part but there is some user data that is read-write and ...

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 real solution later on. The aim of this solution is to take data input from an external s...

How to get started on using NorthScale Memcached Server

Hi, I'm looking to use NorthScale's Memcached Server with Amazon EC2, I've launched a new instance using one of the AMIs on http://labs.northscale.com/memcached-ami/ but how do I go about configuring the bucket name, login credentials and the pool URL? Do any of you guys know of any good introductory material to help me get started on w...

nhibernate, load-balancing, failover, and caching

We have a server that uses NHibernate, and we would like to load balance multiple instances of this server. Our database is big, ~100 GB. If we use a distributed second level cache like memcached or sharedcache, are there still potential data integrity issues? And, why doesn't the first level cache need to be distributed? Also, how ...

ASP.NET and distributed caching in more than one web server

I need distributed cache to be used in more than one web server. I've tried a file based cache dependency, but it doesn't work in UNC path. I think .NET can not monitor the files on the UNC path. I know that Microsoft has presented a new feature in Velocity. But, is there any other solution (like memcache in PHP)? ...

Synchronize access to keys stored in distributed cache (SharedCache)

In my project I am using SharedCache as a distributed caching mechanism. There are multiple instances of a service deployed in webfarm which accesses this cached data. The data which is cached is transient and can have updates. I would like to know if there is any way we can synchronize the access to the data between two or more services...

NorthscaleClient does not Set values consistently

I am using NorthscaleClient from Enyim Memcached client libary to store objects in Northscale Memcached Server. Below does not work consistently, assertion fails most of the time. Am I doing anything wrong? // File size is 360kb var reader = File.ReadAllText(@"c:\RHDSetup.log"); for (int i = 0; i < 10; i++) ...

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 server.I am using caching in the application and when data changed the cache is cleared and the problem now how each server will feel with cac...

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 30K-50K. I plan to use caching (provider based), and was wondering: Is it a good idea to cach...

IIS 7 appfabric issue with IIS 5

will windows server 2003 distributed cache client support in IIS 7?..if not support what is main difference?..related to caching.. I have problem in windows server 2003 server..? how to rectify in both?.. ...

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 EC2) It's possible for number of instances to be changing over time for scaling. When a request comes with an id FOO, the event is cached i...