-
Notifications
You must be signed in to change notification settings - Fork 51
New issue
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
replace lucene with soundex (patented) #836
Comments
It is the devil what is behind CLucene. We know. |
it is the underlying sword library that defines what optimized search facility is provided. as matters stand, sword itself can be built --with-cxx11regex and --with-xapian but neither is used in practice in packages as distributed. routinely, --with-icuregex is used, however. in any event, this isn't an issue controlled by xiphos, but by the packagers of the sword lib. |
how about a aounds-like algorithm of your own making? |
how about we're not researchers in textual extraction. |
instead of using lucene to do a job and making Christians and pastors wonder about who is really behind it, why not use
patent is listed. a fuzzy search is not what you want, since it learns from previous efforts. try a modification of soundex based on the language instead. soundex is an old but familiar replacement for like-word search and it's fairly good.
and did you know you can access a list of strings faster using a reference than passing by value to a function? saves an full temporary copy of the whole thing. and if it's big, that can eliminate 5 minutes.
The text was updated successfully, but these errors were encountered: