[JBoss-user] [JBossCache] - Re: How does

2005-07-05 Thread mohamedj
Great news!  Is there a scheduled build release coming soon after?

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3883700#3883700

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3883700


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossCache] - Re: How does

2005-07-05 Thread [EMAIL PROTECTED]
Release 1.2.4 is scheduled at the end of August for now. But you are welcome to 
try out the development version once I get it fixed.

Stay tune,

-Ben

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3883704#3883704

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3883704


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossCache] - Re: How does

2005-07-05 Thread [EMAIL PROTECTED]
OK, I have checked in the code. You can grab the cvs and build for yourself if 
you want. I have added a new test case FileCacheLoaderAopTest to test it out.

Release 1.2.4 is scheduled for end of August now.

-Ben

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3883771#3883771

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3883771


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossCache] - Re: How does

2005-06-30 Thread mohamedj
Is there any idea when this will be fixed?

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3883240#3883240

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3883240


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossCache] - Re: How does

2005-06-30 Thread [EMAIL PROTECTED]
Probably within next two weeks.

-Ben

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3883291#3883291

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3883291


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossCache] - Re: How does

2005-04-22 Thread [EMAIL PROTECTED]
Yes, we are reading. :-)

This looks like a bug. Can you open up a Jira issue under JBossCache and please 
assign it to me.

Thanks,

-Ben

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3875067#3875067

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3875067


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossCache] - Re: How does eviction work for Aop tree

2005-04-22 Thread roginsky
I hope someone is reading it... or am I writing to myself?
Anyway, I think this is the problem code (from TreeCacheAop.java):

   public void evict(Fqn fqn) throws CacheException {
  // We will remove all children nodes as well since we assume all children 
nodes are part
  // of this object node.
  if(isAopNode(fqn)) {
 if(log.isDebugEnabled()) {
log.debug(evict(): evicting whole aop node  +fqn);
 }
// _remove(null, fqn, create_undo_ops, false);
 // TODO Why do we not want to remove the interceptor??? I think we 
should.
 // Because if we remove it, the caller has no idea that it has been 
taken off.
 // She will still think that caching is in effect. But this returns 
null value from cache.
 // What's is a good policy?
 boolean removeCacheInterceptor = false;
 _removeObject(fqn, removeCacheInterceptor);  } else {
 super.evict(fqn);
  }
   }

Is it possible to remove the interceptor only for this one call (_removeObject) 
and then put it back? Seems like that would be the right thing to do.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3875060#3875060

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3875060


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossCache] - Re: How does

2005-04-22 Thread roginsky
Oh, thank you, thank you,thank you!

You guys are awesome, responding so quickly to so many people (not to mention 
your great products and impressive documentation)! I only wondered whether 
anyone was reading because I had no idea how you managed it.

I opened an issue, but I don't have the authority to assign it.
http://jira.jboss.com/jira/browse/JBCACHE-135

Thanks again!

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3875082#3875082

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3875082


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossCache] - Re: How does

2005-04-21 Thread [EMAIL PROTECTED]
I suggest you 
(a) look at the FileCacheLoaderTest for examples and
(b) update to 1.2.2

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874776#3874776

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874776


---
This SF.Net email is sponsored by: New Crystal Reports XI.
Version 11 adds new functionality designed to reduce time involved in
creating, integrating, and deploying reporting solutions. Free runtime info,
new features, or free trial, at: http://www.businessobjects.com/devxi/728
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossCache] - Re: How does

2005-04-21 Thread roginsky
Thank you Bela!
I tried running the testEvictionWithCacheLoader2 from the CacheLoaderTestBase 
class, and it indeed works. Then I modified it like this (because this is the 
functionality I'm looking for):
  cache.putObject(/first/second/third, val1);   // stored in cache 
loader
  cache.evict(Fqn.fromString(/first/second/third));  // removes node, 
because there are no children
  assertFalse(cache.exists(/first/second/third));
  assertTrue(cache.exists(/first/second));
  assertTrue(cache.exists(/first));
  String val=(String)cache.getObject(/first/second/third); // should be 
loaded from cache loader
  assertEquals(val1, val);
  assertTrue(cache.exists(/first/second/third));
  assertTrue(cache.exists(/first/second));
  assertTrue(cache.exists(/first));

getObject returns null, so bolded assertEquals fails. Am I not understanding 
how the Aop tree works with objects? I tried adding 
cache.load(/first/second/third) just before cache.getObject(), and it didn't 
help.

Also, when I downloaded 1.2.2 zip file, the jboss-jmx.jar wass missing 
org.jboss.mx.util.JBossNotificationBroadcasterSupport class, so I had to get 
this jar from CVS.


View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874871#3874871

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874871


---
This SF.Net email is sponsored by: New Crystal Reports XI.
Version 11 adds new functionality designed to reduce time involved in
creating, integrating, and deploying reporting solutions. Free runtime info,
new features, or free trial, at: http://www.businessobjects.com/devxi/728
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossCache] - Re: How does

2005-04-21 Thread roginsky
P.S. It appears that for the TreeCacheAop evict() causes complete removal of 
the node from the backstore. The regular TreeCache doesn't do it. Is this the 
expected behavior? I though eviction only affects the memory cache, but not the 
backstore. Is there any configuration that would prevent it from happening? 

P.P.S. If I use exactly the same Aop cache and configuration, but instead of 
using putObject(fqn, pojp) API, use put(fqn, key, pojo), the backstore node 
doesn't get removed during evict() call.

Thank you for your help and for getting back to me so quickly after my first 
post.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874954#3874954

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874954


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossCache] - Re: How does JbossCache relate to JavaGroup??

2005-04-19 Thread [EMAIL PROTECTED]
JBossCache is a transactional caching solution built on top of JGroups. JGroups 
is a reliable multicast toolkit.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874461#3874461

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874461


---
This SF.Net email is sponsored by: New Crystal Reports XI.
Version 11 adds new functionality designed to reduce time involved in
creating, integrating, and deploying reporting solutions. Free runtime info,
new features, or free trial, at: http://www.businessobjects.com/devxi/728
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossCache] - Re: How does JbossCache relate to JavaGroup??

2005-04-19 Thread balteo
Thanks for the reply.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3874467#3874467

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3874467


---
This SF.Net email is sponsored by: New Crystal Reports XI.
Version 11 adds new functionality designed to reduce time involved in
creating, integrating, and deploying reporting solutions. Free runtime info,
new features, or free trial, at: http://www.businessobjects.com/devxi/728
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user