I'm interesting in indexing full names of artists/bands using Lucene/Solr out of my MySQL server.
I have a DB table called 'entity_aliases' which holds many variations of bands/artists in my system. the table look like this:
entity_aliases int(11) auto inc. PK
entity_type enum(artist, band)
entity_id int(11)
entity_alias varchar(100) + full text search index.
Example entity_alias (field) values:
Beyoncé
Beyoncé Giselle Knowles
Giselle Knowles
...
General explanation about the type of queries I'd like to perform:
My service needs to provide information about artists/bands. In order to do so - my clients need to provide me with the entity name.
*My clients (sometime) provide me an entity name with typos or a name that not found exactly in the DB (in our case "Beyonce Knowles" also note the European "é").
So the demands are:
- I'm using sharded MySQL - so the 'entity_aliases' is also sharded. it need to index more than 1 MySQL server.
- Its need to support 80M names.
- Nice to have: ignore/overcome minor typos or European characters (fuzzy search).
- Need to be supported by PHP (CakePHP).
- entity names probably won't exceed 20-25 chars
- The query itself is very simple - I provide a "name" and in return I'd like to get a list of similar entities (entity_id and entity_type) and if possible - a score.
- I need to index entities on-the-fly and the index should be affect immediately.
Things I'd like to know:
- is doable using lucene/solr?
- is there any better solution that I need to consider?
- how my schema should look like?
Thanks!