Jonathan Zylberberg
04/16/2025, 1:55 PMnames: list[str], state: str, city: str, brand_id: str
2. name: str, state: str, city: str, brand_id: str
3. names: list[str], addresses: list[{state: str, city: str}], brand_id: str
If someone searches for q=Target,NY,New York query_by=names,state,city
is there any speed increase/decrease between the above options?Fanis Tharropoulos
04/16/2025, 2:20 PMJonathan Zylberberg
04/16/2025, 2:57 PMq=Targ NY
that the row for Target with 10k NY locations would match higher than a row for Targ with 1 NY locations? Due to the large difference in number of matched tokens on the row?Fanis Tharropoulos
04/16/2025, 3:01 PMnames
field)