Victor Crépin
Victor Crépin
 gcc (GCC) 12.3.1 20230508 (Red Hat 12.3.1-1)
Hey, I'm using Meilisearch with a `_geoRadius` filter and it takes about **_2 seconds_** to complete the query. The `_geoBoundingBox` is way faster (3ms). Meilisearch version: `1.3.2` Index: `26 million...
We could achieve this behaviour by changing the API from this: ```elixir defmodule Meilisearch.Settings do def update(client, index, settings), do: {:ok, result} end ``` to this: ```elixir defmodule Meilisearch.Settings do...
Wow, you're fast. Your solution (2) works perfectly as intended, thank you very much.