Fast full-text searching in Python (job for Whoosh?)
Greg Ewing
greg.ewing at canterbury.ac.nz
Mon Mar 6 18:10:35 EST 2023
On 7/03/23 6:49 am, avi.e.gross at gmail.com wrote:
> But the example given wanted to match something like "V6" in middle of the text and I do not see how that would work as you would now need to search 26 dictionaries completely.
It might even make things worse, as there is likely to be a lot of
overlap between entries containing "V" and entries containing "6",
so you end up searching the same data multiple times.
--
Greg
More information about the Python-list
mailing list