Tagged Questions
JCS is a distributed caching system written in java. It is intended to speed up applications by providing a means to manage cached data of various dynamic natures
4
votes
4answers
479 views
Java distributed objects with locality?
I am evaluating various Java object distribution libraries (Terracotta, JCS, JBoss, Hazelcast ...) for an application server and I'm having trouble understanding their behavior on various axes.
My ...
2
votes
2answers
1k views
How do you share Java Caching System (JCS) resource across multiple EJB
I am using JCS to store the ldap search results which should be shared by multiple EJB. I have created a singleton class to initialize JCS only once but due to EJB's classloader, it's been initialized ...
2
votes
7answers
659 views
Java object caching, which is faster, reading from a file or from a remote machine?
I am at a point where I need to take the decision on what to do when caching of objects reaches the configured threshold.
Should I store the objects in a indexed file (like provided by JCS) and read ...
1
vote
0answers
35 views
JCS Cache shutdown,guaranteed persistence to disk
Iam using JCS for caching.Now I am using disk cache to temporarily store all the data.The problem is when I use JCS,the keys are written to disk only if the cache is properly shutdown.
I am using the ...
1
vote
1answer
44 views
Information about JCS
This is conjunction with my previous question JCS Disk Cache data retrieval
Does JCS read from disk even after the application is shutdown.i.e I have a JCS that writes to disk.The thing is one ...
1
vote
1answer
42 views
JCS Disk Cache Issue
I am using JCS for caching purposes and I am experiencing an issue where the data is not written to a disk,i.e no error is coming,but when I look at the data files,they are all 0k in size.Anybody know ...
1
vote
1answer
70 views
Monitoring JCS Cache Usage
Our application is using JCS for caching frequently used data.
I wanted to know if JCS maintains(or can generate) any statistics having information like cache usage, cache misses, etc?
We recently ...
1
vote
1answer
782 views
Singleton across classloaders/EJB:How to avoid multiple instance of JCS Cache due to multiple class loader/EJB's?
I want to use JCS (Java Cache System) to cache ldap queries which should be shared by multiple EJB's (class loaders) to avoid the duplicate searches. I have created a singleton wrapper to create only ...
1
vote
0answers
70 views
Overriding JCS events
I am using Apache JCS in our application to cache commonly used data at application start-up. However, if some of the data in cache is not used till its idle time, I want to manually reload that value ...
0
votes
0answers
8 views
JCS Block Disk Cache Usage
I was previously using indexed disk cache for disk caching with JCS.Now I have to use a cache which spilts the files in an arbitrary manner.I came across block disk cache.Does it write out to files in ...
0
votes
1answer
43 views
Getting keys from JCS Cache
I am using JCS cache for performance enhancement.There is an issue when I need to maintain a set of keys because the type of storage I use is generally offline storage to the disk.
Is there a way to ...
0
votes
1answer
59 views
JCS Concurrency Error
I am using JCS for caching in my application.Recently some errors are occuring where concurrent access to data in the cache results in null value i.e one thread writes to the cache and one thread ...
0
votes
0answers
16 views
Virtual servers sharing that same JCS disc cache
I am using JCS disc cache. Now I have few virtual servers which share disc space on physical one. Is it possible to point JCS disc caches to that same file and they will share it and there will be no ...
0
votes
0answers
16 views
JCS: MYSQL jdbc
I have configured JCS with MYSQL database as mentioned below in article:
http://commons.apache.org/jcs/MySQLDiskCacheProperties.html
I am not able to store 1000s of objects immediately, there is some ...
0
votes
1answer
39 views
Keep cached data after server restart
I want to use a distributed caching solution that will have a backup of the cache to retain the cache after server restart. Is it possible to achieve the same using memcached ?
0
votes
0answers
38 views
Get element from a jcs lateral auxiliary cache
How can i verify if my lateral auxiliary cache has an element in it's cache and
how can i get this element from that auxiliary cache?
My problem is that when i start the tomcat from one machine and ...
0
votes
1answer
158 views
JCS notify on expire/remove
we use JCS very simply. Not distributed or anything, simply:
JCS jcs = JCS.getInstance("region-name");
I'm trying to register some kind of listener that can be used to receive a notification/event ...