Assuming there are 10 ids will this definitely find all 10 if they exist? Or are there efficiency limits so that it won’t search the whole database to get all 10? (I know these limits can happen with text/vector searches etc…).
Ie: should I do 10 separate find by id searches to definitely find the objects - or can I safely use the above?
@DudaNogueira Just curious though if “contains_any” will search the database for all the ids - or if there is a limit to the search. I understood text/vector searches have some limit to preserve resources.
Hey @msj242, under the hood, contains_any just builds a filter which is passed into the same search function as any other search. So the global max limit, QUERY_MAXIMUM_RESULTS, will be applied in the same manner