In Java, I have a big collection of objects (~ 10,000 objects), say Set<Person> cityInhabitants. I also have a big collection of predicates (~ 1,000 predicates) which shall be used to filter away any Person matching any of these predicates. Predicates could be for example
person.getName().equals("ugly name1")person.getName().equals("ugly name2")person.getAge() < 18.
This requirement calls for the following challenges:
- the filtering shall be fast
- the predicates are "business defined" and therefore it shall be easy to add and remove predicates. That means the predicates probably shouldn't be hard-coded in source code, but better be maintained in a database (?)
What are solutions to these challenges? Are there any libraries that can help here?