I'm attempting to find an example that demonstrates a Lucene or some other kind of index that can check an English first & last name combination for possible duplicates. The duplicate check needs to be able to take into account common nicknames, i.e. Bob for Robert and Bill for William, as well as spelling mistakes. Does anyone know of an example?
I plan to perform the duplicates search during user registration. The new user record needs to be checked against an index that has been built from the database table that stores the user names.
I would use a SynonymFilter on the firstName while indexing, so that you have all possible combinations (Bob -> Robert, Robert -> Bob, etc...). Index the existing users you have.
Then use the QueryParser (without the SynonymFilter in the analyzer) to ask some fuzzy queries.
This is the code I came up with:
Which results in:
Hope that helps!