You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fuzzy as used currently doesn't scale well, with a lot of assets in a asset-heavy import it can take a second and it can get executed hundreds of times. Much better is to have a simple lookup by single value, the issue is the value can be an array (multiple URLs match the same asset).
We could support say up to 5 URLs and then do
(name ='url1'and data = $value) OR (name ='url2'and data = $value)...
It's not pretty, but should be much faster, without us needing to migrate the data structure to say JSON or something.
The text was updated successfully, but these errors were encountered:
Fuzzy as used currently doesn't scale well, with a lot of assets in a asset-heavy import it can take a second and it can get executed hundreds of times. Much better is to have a simple lookup by single value, the issue is the value can be an array (multiple URLs match the same asset).
We could support say up to 5 URLs and then do
It's not pretty, but should be much faster, without us needing to migrate the data structure to say JSON or something.
The text was updated successfully, but these errors were encountered: