Is it any difference between exact search query for one value and search query IN list of value with one value.
Let me explain with sql notation.
E.g. for posgtres doesn’t matter
Select “name” from any where id = ‘1’
or
Select “name” from any where id in (‘1’);
Postgres know how to do better. Me, as a developer, can always execute query with IN clause.
Is it matter for elasticsearch if it will be the same query semanticly?