Comment on Building a full-text search engine in 150 lines of Python code (2021)parentComments−marginalia_nu1yYou can probably have phrase matching in a hundred lines more, maybe less.Most of the difficulty in search is dealing with the sheer volume of data. The algorithms themselves are pretty trivial for the most part.
Comments
You can probably have phrase matching in a hundred lines more, maybe less.
Most of the difficulty in search is dealing with the sheer volume of data. The algorithms themselves are pretty trivial for the most part.