[jboss-user] [JBossCache] - Re: TreeCache replication optimization
bstansberry@jboss.com
do-not-reply at jboss.com
Thu Nov 2 14:00:06 EST 2006
TreeCache will replicate the modified key value pairs, not the whole node and definitely not any other nodes. So if you do a put("/a/b/c", "x", "y") an object encapsulating that command is replicated.
Putting everything in one node could be faster in a simple test because the shallower your tree, the faster the navigation to the needed node is. But, there could be a heavy price to pay in a multi-threaded system. With READ_COMMITTED or stronger isolation, if one thread is modifying that node, all other threads are blocked waiting to read it. With finer-grained nodes, any lock contention is also more fine grained.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3982746#3982746
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3982746
More information about the jboss-user
mailing list