[jboss-user] [JBossCache] - Re: Manual eviction not working

2008-02-25 Thread mircea.markus
yes, it should work on pojo 2.x. (Pojo 2.x does not extend tree cache anymore, so you'll have to obtain the cache and evict manually: pojo.getCache().evict()) Re: deploying Pojo 2x in AS4.x, it is still something we are looking to, check

[jboss-user] [JBossCache] - Re: Manual eviction not working

2008-02-21 Thread dmary
Well, does it work in version 2.xx and could I install 2.xx version with Jboss 4.0.5 GA ? Thanks for ur response. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4130984#4130984 Reply to the post :

[jboss-user] [JBossCache] - Re: Manual eviction not working

2008-02-20 Thread mircea.markus
sorry for the late answer. this is a bug, and http://jira.jboss.com/jira/browse/JBCACHE-1293 was created for this. No workaround I am afraid. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4130914#4130914 Reply to the post :

[jboss-user] [JBossCache] - Re: Manual eviction not working

2008-02-19 Thread dmary
nobody ?? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4130469#4130469 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4130469 ___ jboss-user mailing list

[jboss-user] [JBossCache] - Re: Manual eviction not working

2008-02-14 Thread dmary
up! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4129355#4129355 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4129355 ___ jboss-user mailing list jboss-user@lists.jboss.org

[jboss-user] [JBossCache] - Re: Manual eviction not working

2008-02-13 Thread dmary
I see this in JbossCache docs : anonymous wrote : When the eviction policy in effect calls evict() to evict a node from the cache, if passivation is enabled, a notification that the node is being passivated will be emitted to the tree cache listeners and the node and its children will be

[jboss-user] [JBossCache] - Re: Manual eviction not working

2008-02-13 Thread mircea.markus
I've run the following test on 1.4.1SP3, works fine: public void testIssues() throws Exception |{ | TreeCache cache = new TreeCache(); | PropertyConfigurator conf = new PropertyConfigurator(); | conf.configure(cache, ..\\passivation-issues.xml); |

[jboss-user] [JBossCache] - Re: Manual eviction not working

2008-02-13 Thread dmary
mircea.markus wrote : I've run the following test on 1.4.1SP3, works fine: |public void testIssues() throws Exception | |{ | | TreeCache cache = new TreeCache(); | | PropertyConfigurator conf = new PropertyConfigurator(); | | conf.configure(cache,

[jboss-user] [JBossCache] - Re: Manual eviction not working

2008-02-13 Thread dmary
Well, I've try your code + two objects (Integer) : this.cache.put(/za_node, key, value); | this.cache.put(/za_node2, key, value); | this.cache.put(/za_node3, key, value); | this.cache.put(/za_node4, key, value); | this.cache.putObject(/za_node5, new Integer(56));