Tagged Questions
The distributed-cache tag has no wiki summary.
3
votes
3answers
234 views
Need a distributed key-value lookup system in PHP
This question asks for one in java,
what's the best candidate in PHP?
BTW,does the following establish:
distributed key value store ==
distributed cache
?
3
votes
3answers
1k views
What' the expected release date for Microsoft Velocity? [closed]
CTP3 was released in March, is there any expected release date for v1?
3
votes
6answers
755 views
What are you using for Distributed Caching in web farms running ASP.NET?
I am curious as to what others are using in this situation. I know a couple of the options that are out there like a memcached port or ScaleOutSoftware. The memcached ports don't seem to be actively ...
2
votes
5answers
130 views
What shared state distributed systems exist which can handle objects in the native language?
As far as I know there is Terracotta and Maglev. Are there any others?
1
vote
1answer
121 views
How to convey transactions operating on multiple distributed maps within a distributed cache product
By distributed cache product I mean something like Coherence or Hazelcast. I will use Hazelcast as the example.
Suppose I have an object that keeps state in a number of maps:
class DataState {
...
1
vote
1answer
522 views
How to run multiple Hibernate SessionFactories with the SAME db schema using a distributed Ehcache
We have a system with n number of clients (55 at this time) where each client gets their own database all of which have the exact same schema. We are running hibernate 3.6.1 backed by a distributed ...
1
vote
0answers
186 views
Memcached: Update Notification for Client Caches
Let's take the .NET client of Memcached for example:
As we know, if we want to put some data to the cache server, we call some API like Cache.Add(string key, object data), and the memeched client ...
1
vote
2answers
336 views
Is there a queriable distributed cache with high availability option for Windows?
We are trying to integrate some sort of distributed cache into our system. We have two major requirements:
High availability, i.e. automatic data replication to mirroring machines so that if one ...
1
vote
1answer
46 views
Are there any distributed cache solution that is similar to a skip list?
I was wondering if there are any open source (or proprietary) frameworks that would simulate a concurrent priority queue which allows peeking, and removal from arbitrary index with good performance.
...
1
vote
2answers
601 views
Distributed Cache with Serialized File as DataStore in Oracle Coherence
Weired but I am investigating the Oracle Coherence as a substitue for distribute cache. My primarr problem is that we dont have distribituted cache as such as of now in our app. Thats my major ...
1
vote
1answer
385 views
“Real” Object References in Distributed Cache?
I'm personally committed to .net distributed caching solutions, but I think this question is interesting across all platforms.
Is there a distributed caching solution (or generic strategy) that ...
1
vote
3answers
389 views
is MS Velocity ready for production?
I wonder if anyone has tried velocity in a production environment. It is in CTP2 version right now, and we are thinking of using it. Has anyone tried it? If yes was it a positive experience?
0
votes
1answer
120 views
Gemfire - IllegalStateException on cache create
I'm trying to run a Gemfire client app but I'm getting an IllegalStateException when running the following code:
//clientPool is the name of the pool from the client
DynamicRegionFactory.Config ...
0
votes
1answer
104 views
hive : remove stuff from distributed cache
I can add stuff to distributed cache via
add file largelookuptable
and then run a bunch of HQL.
now when I have a series of commands, like the following
add file largelookuptable1;
select blah ...