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
When dataset has > 1000 rows but less than 2000 rows the output of CLI re-index script is confusing:
[] bin/plugin tntsearch index Re-indexing Language: en Added 1 / Added 2 /home Added 3 /home/sweet ......... Added 1085 /another/link Added 1086 /test Processed 1000 rows Total rows 1086
It is not clear if only 1000 rows from 1086 were processed and the index is missing some data or not. I had to track down it to
tntsearch/src/Engines/SqliteEngine.php
Line 395 in 1309668
I'm not sure what is the proper way to fix this, but this either should output rows in every step, in my case:
Processed 1000 rows Processed 86 rows Total rows 1086
or it should be reworded to actually say that this is step 1, step 2, etc.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When dataset has > 1000 rows but less than 2000 rows the output of CLI re-index script is confusing:
It is not clear if only 1000 rows from 1086 were processed and the index is missing some data or not. I had to track down it to
tntsearch/src/Engines/SqliteEngine.php
Line 395 in 1309668
I'm not sure what is the proper way to fix this, but this either should output rows in every step, in my case:
or it should be reworded to actually say that this is step 1, step 2, etc.
The text was updated successfully, but these errors were encountered: