anonymous wrote : | If so are there workarounds where only that single entry is updated in the above use case? |
Can you change your entries in your map into a node? This would solve your problem. e.g You have a path like so /a/b/c and node "c" contains 100 elements in your hashmap. Now if you changed the path to be a/b/c/c1 a/b/c/c2 a/b/c/c3 And c1,c2 and c3 were originally hash entries the old way but now you have made them into nodes and each node will now only contain 1 element in the hashmap then this would solve your update problem. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4130055#4130055 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4130055 _______________________________________________ jboss-user mailing list [email protected] https://lists.jboss.org/mailman/listinfo/jboss-user
