I have class which has some fields and one of them is Collection of child. Problem is that child make class unique and I must search duplicates by child (from beginning class does not has any ID).
So I write smth like this:
SELECT c
FROM Class c, IN(c.children) c1, IN(c.children) c2, IN(c.children) c3
WHERE c.project='project' AND c1.name='name1' AND c2.name='name2' AND c3.name='name3'
it works fine while You have more or less unique c.project. but in some case I must import large amount of data with same project (or null) and then search can take 5-6 seconds on 200-300 c with 3-4 children.
I missing something big I suppose but dont know what exactly. Can You please help me.
UPDATE: This query can give me clue if I already have such object in database and dont need to add one more (as I say - no ID from beginning). I mean - if in database exist object with same project(project!=ID) and same set of children than I dont need to add one more otherwise I need to create new record.