Yes i use async,
i don't use flow control protocol (i don't now if it's supported in this
release of JBoss (1.2.4/jgroups 2.2.8),
but as you can see in my publisher test class, all 1000 msg (via modulo)
i call a sleep of 2000ms (i have test without).
What is very strange is, this is not the pub
Hi,
Before using JBossCache in a production environnement, i try to test
performance and memory stability
You can find below an example where a publisher send asap a number of the same
object and a subscriber which read asp the data (with cache notification)
* First the CPU is always full (all
yes, i have read the code of TreeCache and TreeCacheAop
and i have implemented the nodeModify callBack
and this method is called many time for the same modification.
another pb is we can not make the difference between node which has been
created (modified the first time) and another modificatio
I have registered a TreeCacheListener on my aopcache:
In method cacheStarted(TreeCache arg0)
i call: myCache.putObject("/foo/bar", "42")
And in the same listener in method nodeCreated(Fqn arg0)
i call :
if (arg0.equals(Fqn.fromString("/foo/bar"))
{
System.err.println("find bis: "+myCache.getOb
What is the current branche for jbosscache (for 1.2.4beta)
i try to see source under fishEye in Main branche but all is deleted and i
don't found a branche for this release named *1_2_4beta"
Thx
Christopher
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=389658
Hi,
I have a simple need with JBossCache (aop version):
2 clients share a treecache, but the first started needs to completly init the
cache in memory (from a special backend).
I've read many information (Tutorial,forum ..., CacheLoader) but all is not
completly clear for me.
I have already us