I am processing a tree, and would like to speed it up using GPARs. I've used it for simple things but haven't delved into the more complex options.
Assume that I am processing different branches of the tree with their own threads.
Let's say a node has a name. When I hit that node the first time, I want it to be processed (which involves writing things to a database, etc.), and added to a cache (just a simple map here).
I want other threads that may hit that same node (e.g. a node with the same name) elsewhere on the tree, to check the cache. If it's already in the cache, they can just grab it and move on. If another thread is working on processing that node for the first time, I want the other threads that are on that node in their branches to wait before going on down the tree (to other things that depend on that node having already been processed).
The node is pulled from the db, so it's not the same object in each branch, I don't think synchronized methods will work.
I of course want other unrelated nodes to continue to be processed.
For example:
- Thread 1 is processing A-B-C-D
- Thread 2 is processing E-B-F-G
- Thread 3 is processing W-X-Y
- Thread 4 is processing L-M-N-O-P-Q-R-S-B-J
Let's say Thread 1 gets to node B first. It finds it's not in the cache, so it begins to process it.
Thread 2 comes along and sees node B is not in the cache, but it's being worked on. So it waits to go on to node F until Thread 1 is done processing node B.
Thread 3 doesn't care about node B and so keeps cranking along.
Thread 4 comes along later after Thread 1 has finished with node B and finds node B in the cache, so it just pulls it from the cache and continues on to node J.
I am looking for suggestions of how I could best apply GPARs to this situation.
Thanks!