anonymous wrote :
| What is the relation between in-memory nodes and nodes in db? Does JBoss Cache maintains maxNodes in memory and if the number exceeds beyond this, it keeps all other nodes in db? So at a given point of time if there are 4500 nodes are there in memory, and the application tries to put 1000 more nodes in the same region, would these nodes be put in db. SO there would be 4500+1000 = 5500 nodes in db and only 4500 nodes in memory?
The in-memory nodes are a subset of what's in the DB. Although, if you use activation/passivation then they are disjoint sets.
The MaxNodes is for the in memory configuration.
Yes to your last question.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4083744#4083744
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4083744
Okiee its not in src code native bundle 92.0.1) some how but, looked at repository.
http://anonsvn.jboss.org/repos/jbossws/spi/trunk/src/main/java/org/jboss/...
My next question is whet is the diffrence between
option "sourcedestdir"
and option "destdir"
because when i make both of them point to same place
it generates stubs, with same structure at two diferent places
and and it looks they are linked because if you delete one structure other goes as well.
How do i make it that, both are same at same place without duplication
| <target name="gen_stubs">
| <taskdef name="wsconsume" classname="org.jboss.wsf.spi.tools.ant.WSConsumeTask">
| <classpath>
| <path refid="web.services.classpath" />
| </classpath>
| </taskdef>
|
| <wsconsume
| fork="true"
| verbose="true"
| sourcedestdir="${basedir}"
| destdir="{$basedir}"
| package="au.com.hello.integrate.anttask.stubs"
| keep="true"
| wsdl="GetMemberTest.wsdl"/>
| </target>
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4083743#4083743
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4083743