Hello everyone, the query below works. I would have liked to optimize it so as to accelerate the result. Can you help me ? Thank you in advance. Mathieu
You can already simplify your query a bit by using "|" in queries, which acts like "a or b" -> "a|b", and "~" (tilde) instead of "=". For example: ["amenity"~"parking|school"] -- Not sure how much that will speed up the process though and what your desired result should look like.
You can already simplify your query a bit by using "
|
" in queries, which acts like "a or b" -> "a|b", and "~
" (tilde) instead of "=
". For example:["amenity"~"parking|school"]
-- Not sure how much that will speed up the process though and what your desired result should look like.