Assuming I have a nodeRef to node A, I want to be able to do the following;
From node A, search for all children of type MyType with myProperty = "myvalue".
Is it more efficient to use lucene for the search or to use the nodeService. getChildAssocs functionality? I'm leaning towards lucene, but currently I can't construct any query using "+" to combine separate queries… only the final query actually has any effect.
Edit: forget that last bit, I was being dumb and forgetting the "+" on the initial search term…