Replies: 7 comments
-
Global search becomes totally unusable once you have a large order history. If anything it should only use prefix matches so that indexes may be used since when you use a suffix match a full table scan is required. With prefix matches or exact matches only the performance is pretty acceptable. |
Beta Was this translation helpful? Give feedback.
-
This is partly so. For us the solution was to re-think the usage. We dont use it to find customers (we can do that via orders) and we did not use it to find products. As a result we
A lot is lost here. But also a lot is gained => because it is now being used again. And it is now very fast My reasoning is. If nobody uses it. Then strip it to basics. And start adding logic that people do use! Hope it helps someone
|
Beta Was this translation helpful? Give feedback.
-
I would also say, if its becoming unusable with a large order history, thats a Bug worth to be fixed |
Beta Was this translation helpful? Give feedback.
-
The |
Beta Was this translation helpful? Give feedback.
-
Also thought of that
In Dutch we have a saying for this : looking for nails in shallow water
Translated something like: Listening for thunder when there is sunshine.
…On Wed, 3 Oct 2018 at 17:22, Colin Mollenhour ***@***.***> wrote:
The is_numeric optimization is a great one unless someone knows of a
country where numbers are used in people's names.. 😆
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#541 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AAn0ax_Em48rgu4mW1TdSYQ7T6T5xnyrks5uhNYsgaJpZM4XCs-j>
.
|
Beta Was this translation helpful? Give feedback.
-
To be clear I was advocating for that optimization, not against it. |
Beta Was this translation helpful? Give feedback.
-
We have a saying for that too: thumbs up!
…On Wed, Oct 3, 2018 at 7:56 PM Colin Mollenhour ***@***.***> wrote:
To be clear I was advocating *for* that optimization, not against it.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#541 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AAn0axzYjsyet7SOor3J_NGx9Jmm4vZrks5uhPpggaJpZM4XCs-j>
.
|
Beta Was this translation helpful? Give feedback.
-
Possible Global Record Search Improvement
If searching for full order increment_id and only 1 match: the redirect directly to order view page
change order increment_id search to "%search_string" search from right because we often only enter the last XX digits
Beta Was this translation helpful? Give feedback.
All reactions