We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
remove_stopwords() takes a lot of time during imports. (found during investigation of #2563 by @zigouras and @hangy )
e.g. test run with 500 dummy products:
The function currently checks each stopword one by one.
We can speed up by making one single regular expression to check all stopwords.
The text was updated successfully, but these errors were encountered:
10X speed increase:
Sorry, something went wrong.
speed up remove_stopwords() , bug #2607
e7c1d82
stephanegigandet
No branches or pull requests
remove_stopwords() takes a lot of time during imports. (found during investigation of #2563 by @zigouras and @hangy )
e.g. test run with 500 dummy products:
The function currently checks each stopword one by one.
We can speed up by making one single regular expression to check all stopwords.
The text was updated successfully, but these errors were encountered: