[JBoss-user] [JBossCache] - Re: TreeCache memory requirement under Weblogic

2005-04-26 Thread ryanjoe
That shouled read maxNodes part of the config - this editor does not like xml !!

thanks


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

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


---
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: TreeCache memory requirement under Weblogic

2005-04-26 Thread ryanjoe
Where is the limit defined for 'full population' of the cache - is it 
the   100  part of the
config

thanks
Joe


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

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


---
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] - TreeCache memory requirement under Weblogic

2005-04-22 Thread ryanjoe
I have implemented TreeCache in a Weblogic environment which when we move to 
load testing will be clustered with up to 2500 users creating probably up to 
100 nodes in the tree. Is there a way to figure out what extra memory each vm 
instance should have for the TreeCache.
I know this probably depends on how large each byte array is that is being 
stored but I was wondering how anyone else had looked at this issue.
thanks
Joe


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

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


---
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: Help !! Simple JDBCCacheloader code not working

2005-04-14 Thread ryanjoe
Plug the cacheloader into the config - example:
org.jboss.cache.loader.JDBCCacheLoader
false
false
false

cache.jdbc.table.name=jbosscache
cache.jdbc.fqn.column=fqn
cache.jdbc.fqn.type=varchar(50)
cache.jdbc.node.column=node
cache.jdbc.node.type=blob
cache.jdbc.parent.column=parentfqn
cache.jdbc.parent.type=varchar(50)
cache.jdbc.datasource=MYDATASOURCE

You can also create a CacheListener(implements TreeCacheListener) and let it 
Log the callbacks - you can quickly see what the cache is doing.

I am new at this too - Joe



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

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


---
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: Help !! Simple JDBCCacheloader code not working

2005-04-14 Thread ryanjoe
My previous entry had all the xml tags stripped - !!

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

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


---
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] - JCache in a Weblogic cluster

2005-04-14 Thread ryanjoe
If I run JCache in each instance of WL and run it in local mode where each 
Cache shares a common backing store - will I be able to retrieve the same 
objects on any node providing I have the correct path and key.  Weblogic is 
providing session replication and we don't want any extra overhead with the 
JGroups layer kicking in .

thanks
Joe


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

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


---
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: JDBCCacheLoader puts data but will not get it back from

2005-04-12 Thread ryanjoe
My database is getting populated when I add new nodes. I have added a 
CacheListener and I notice that although my LRU eviction policy shows items 
being removed from memory - (1) The eviction callback does not fire 
consistently (2) Items requested that have been evicted that are in the 
database comback as follows:Key=jboss:internal:uninitialized
Value=null 

Lastly I removed a node and got this on the console:
Removing entire node /1 from cache
Removed node
org.jboss.cache.eviction.EvictionException: LRUAlgorithm.removeFromQueue(): 
internal error. Can't find fqn in nodeMap. f
qn: /1
at 
org.jboss.cache.eviction.LRUAlgorithm.removeFromQueue(LRUAlgorithm.java:216)
at 
org.jboss.cache.eviction.LRUAlgorithm.processRemovedNodes(LRUAlgorithm.java:108)
at 
org.jboss.cache.eviction.LRUAlgorithm.processQueues(LRUAlgorithm.java:81)
at org.jboss.cache.eviction.LRUAlgorithm.process(LRUAlgorithm.java:51)
at 
org.jboss.cache.eviction.EvictionTimerTask.run(EvictionTimerTask.java:35)
at java.util.TimerThread.mainLoop(Timer.java:432)
at java.util.TimerThread.run(Timer.java:382)

Any ideas ?
thanks
Joe


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

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


---
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] - JDBCCacheLoader puts data but will not get it back from db

2005-04-11 Thread ryanjoe
I am using Weblogic 8.1 with DB2 and the cache is successfully putting items 
into the DB when they are added to the cache. When the same item is removed 
from the memory by the eviction policy I cannot retreive it from the cache even 
though I can see it in the database.
Any clues on what I might have missed ?

thanks Joe


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

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


---
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