Questions tagged [distributed-caching]

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

424 questions
0
votes
1 answer

Writing object as key in Gemfire Cache

I am trying to put an object as a key inside the Gemfire region. TestClass keyObject = new TestClass(); region.put(keyObject, "value"); It fails with below error - com.gemstone.gemfire.cache.client.ServerOperationException: …
0
votes
3 answers

Options for Image Caching

I am running a website on google app engine written in python with jinja2. I have gotten memcached to work for most of my content from the database and I am fuzzy on how I can increase the efficiency of images served from the blobstore. I don't…
clifgray
  • 4,313
  • 11
  • 67
  • 116
0
votes
1 answer

AppFabric 1.1 for Windows server development with windows XP

I have installed and configured AppFabric 1.1 for Windows server on a 64 bit Windows Server 2008 R2. I want to use the caching features from my 32 bit Windows XP development machine. How do i go about installing the Cache client components onto my…
kudlur
  • 1,215
  • 3
  • 15
  • 23
0
votes
1 answer

Infinispan start and stop scripts

In the Infinispan (v. 5.1.6 final) /bin directory there are scripts to start up the Infinispan. Why there is no scripts to stop it? Is CtrlC a legitimate way to stop Infinispan?
Jacob Nikom
  • 11
  • 1
  • 3
0
votes
1 answer

Hadoop Distributed Cache - modify file

I have a file in the distributed cache. The driver class, based on the output of a job, updates this file and starts a new job. The new job need these updates. The way I currently do it is to replace the old Distributed Cache file with a new one…
Razvan
  • 9,925
  • 6
  • 38
  • 51
0
votes
1 answer

Calling a non-static method from within static Map Class in Hadoop

Using DistributedCache in Hadoop by Yavcular In the above link, it is described how to use DistributedCache in Hadoop in an easy to understand way. But the problem is, when I trt to compile the code, I get the following error: non-static method…
Ahmadov
  • 1,567
  • 5
  • 31
  • 48
0
votes
1 answer

caching and load-balancing approaches

Lets say I have one WCF service that is running on one server. Now we introduced some caching on the wcf service for performance reason. Now if I want to do some load balancing .... is there some existing solution that will allow my cache to also…
pdiddy
  • 6,217
  • 10
  • 50
  • 111
0
votes
3 answers

Azure - what is the purpose of applicationName in Azure Caching?

Configuration the ASP.NET Output Cache Provider for Windows Azure Caching I'm a bit confuse about applicationName attribute. Does it mean I can use multiple applications share the same Azure cache (as long as I don't max out Transactions, Data…
Win
  • 61,100
  • 13
  • 102
  • 181
0
votes
3 answers

Enterprise Library Caching Application Block isolated storage to different machine

I am new in Caching Application Block. What I want is, I want to store the data in another dedicated machine and not in Database (distributed caching without database). Is there anyway I can achive this? I can see following options under Backing…
user1312242
  • 339
  • 1
  • 3
  • 16
0
votes
1 answer

Return a cloned object from Map in Hazelcast

I'm using Spring @Cacheable annotation with Hazelcast 2.1 and Spring 3.1. @Cacheable("testCache") public MyObject testMethod(int testParam); //After method call MyObject test = Hazelcast.getMap("testCache").get("key") test.setSomeProp() //This…
emrahkocaman
  • 493
  • 3
  • 12
0
votes
1 answer

Replacing HBase caching with a separate Caching product

Can the caching mechanism used in HBase be replaced with a different Caching product such as Memcache, Gemfire, GridGain etc. ?
0
votes
1 answer

Replicated join using distributed cache in Hadoop 0.20

I have been trying the Replicated join using distributed cache on both a cluster and a karmasphere interface. I have pasted code below. My program is unable to find the file in the cache memory import java.io.BufferedReader; import…
LGG
  • 528
  • 9
  • 21
0
votes
2 answers

Hazelcast : shutting down a particular member from hazelcast cluster

I am using hazelcast with spring MVC and loading the instance with context. Now because of a bug in spring code sometimes my context gets reloaded. And whenever spring context reloads hazelcast creates a new member in its cluster. I am working to…
Anuj Patel
  • 17,261
  • 3
  • 30
  • 57
0
votes
1 answer

Couchbase: is it better to retrieve a list object or each object individually?

I'm currently using couchbase for quick and distributed access of data. I have Community objects being stored by the keys "comm-{index}" where {index} is the key index for a given community object (i.e. comm-1 stores object 1, comm-2 stores object 2…
Javierfdr
  • 1,122
  • 1
  • 14
  • 22
0
votes
1 answer

Caching service call

I want to creating and Aspect for caching. I need to know how can I create a cache key from a method call and insert it in cache with its return value. is there any solution out there available for THIS part. I don't need complete caching…
Ehsan
  • 1,662
  • 6
  • 28
  • 49
1 2 3
28
29