[jboss-user] [JBoss Cache: Core Edition] - jgroups use in local cache with no clustering ?

2009-03-24 Thread cacheuser
What is jgroups used for in local cache with no clustering with shared (jdbc cacheloader) database datastore? I know the documentation says its a required library for JBC 3.0 but since we are using JBC 3 with the webapp in older version of Jboss AS (4.x) I want to know what will not work if I

[jboss-user] [JBoss Cache: Core Edition] - XML validation error using JBC 3.0.1 GA

2009-01-16 Thread cacheuser
I get the following error when I try to use the latest version of the jbosscache-core.jar. The error and the config are below. The config was working fine the 3.0 beta1 version. 2009-01-16 05:54:32,412 [ERROR] Main Thread

[jboss-user] [JBoss Cache: Core Edition] - In JBC 3.0.1 GA what is the new table jbosscache_d created f

2009-01-16 Thread cacheuser
In JBC 3.0.1 a new table is ending with _d is created. What is the purpose of this table, is this a required table ? thanks View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4202591#4202591 Reply to the post :

[jboss-user] [JBoss Cache: Core Edition] - Region specific cacheloader ?

2009-01-07 Thread cacheuser
I am using JBC 3 with local cache and jdbd cache loader, passivation false. I want create a region where I just want to cache data in the memory only, so when evicted the object should not go to the database and another region whose objects should go to database when evicted. I created the

[jboss-user] [JBoss Cache: Core Edition] - Need to move Jboss cache config to Spring - pls help

2008-12-17 Thread cacheuser
I am using JBC 3.0. My config looks as below. I need to move the config to Spring because I have to use the connection pooling object from some other Spring config or if I cant use the connection pooling object I will have to get the Database connection stuff(server:port user password) from

[jboss-user] [JBoss Cache: Core Edition] - When is JBC 3.0 GA coming ?

2008-09-23 Thread cacheuser
I heard JBC 3.0 GA will be out in Sept, 08. Is it still likely that it will be released this month ? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4178386#4178386 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4178386

[jboss-user] [JBoss Cache: Core Edition] - Re: SQLException while loading node from JDBC CacheLoader

2008-09-16 Thread cacheuser
I think the autoReconnect=true would fix it looking at this post http://forums.sun.com/thread.jspa?threadID=704559messageID=4084626 but i am not sure how to define this on the jboss cache config xml View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4176970#4176970

[jboss-user] [JBoss Cache: Core Edition] - How to apply RemoveOnEvictActionPolicy only when maxAge sati

2008-09-09 Thread cacheuser
I am using JBC3.0 Beta1, using JDBCCacheLoader passivation false My eviction policy looks like this | eviction wakeUpInterval=6 | | region name=/mydata/test algorithmClass=org.jboss.cache.eviction.LRUAlgorithm |attribute

[jboss-user] [JBoss Cache: Core Edition] - Re: Option to remove persistent data is a valid use case

2008-07-31 Thread cacheuser
Do you really need another policy ? It would not have changed the existing default behavior, but anyways I will create LRURemovePolicy View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4168019#4168019 Reply to the post :

[jboss-user] [JBoss Cache: Core Edition] - Re: Option to remove persistent data is a valid use case

2008-07-30 Thread cacheuser
I am overriding that method only. Do you mean modify the base class, BaseEvictionPolicy, method instead so that it works across all the eviction policies ? As you suggested I will open a jira. Thanks. View the original post :

[jboss-user] [JBoss Cache: Core Edition] - Re: CacheException while getting object from CacheLoader

2008-07-29 Thread cacheuser
It did work after setting UseLazyDeserialization to false. Thanks. But I think I am still going for 3.0, when will it be released ? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4167405#4167405 Reply to the post :

[jboss-user] [JBoss Cache: Core Edition] - Option to remove persistent data is a valid use case

2008-07-29 Thread cacheuser
A Eviction policy option to be able to remove persistent data is valid use case that the JBoss Cahe does not support right. For example, we are storing data that we get by making a webservice call to other vendor, we have contract with to be able to store the data for no longer than a certain

[jboss-user] [JBoss Cache: Core Edition] - Re: CacheException while getting object from CacheLoader

2008-07-28 Thread cacheuser
I think there is a bug in 2.1.1 the way it marshalls and unmarshalls the data specially when the objects are deep (object containing other objects). When I use 3.0-Alpha things work nicely. Do you guys know the fix, is there a patch available for 2.1.1 View the original post :

[jboss-user] [JBoss Cache: Core Edition] - CacheException while getting object from CacheLoader

2008-07-25 Thread cacheuser
I am writing an object to the cache that I get as a response from a soap call (using apache axis). The object implements Serializable and are auto generated using the wsdl. While reading the object (using get ) back from the cacheloader (jbdc) I get CacheException. As long as the object is in

[jboss-user] [JBoss Cache: Core Edition] - Re: removing data from cache and/or persistent store

2008-07-22 Thread cacheuser
Will this remove data that is not in the in-memory cache but in the persistent store View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4165936#4165936 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4165936

[jboss-user] [JBoss Cache: Core Edition] - removing data from cache and/or persistent store

2008-07-21 Thread cacheuser
I am using JbossCache 2.1.0. We have a need to remove data from the cache and/or the persistent store after a certain number days because of legal reasons, I saw that there are ways to write custom Eviction policy by doing the following In order to implement an eviction policy, the following