JerryVeldhuis / IMDB-Local

Repository to maintain IMDB::Local cpan packaging and extras
http://search.cpan.org/~jerryv/
0 stars 1 forks source link

Need weight-based searching algorithm #7

Open JerryVeldhuis opened 9 years ago

JerryVeldhuis commented 9 years ago

Possibly a new perl object called TitleCriteria that includes matching fields that can be optionally set with known (and trusted) information. Then use the TitleCriteria object to conduct searches returning weighted results.

JerryVeldhuis commented 9 years ago

Should include

Will want a simple tool to test/review search results with.

honir commented 9 years ago

A lookup methodology we found works well is: Title > Director > Year (+/-2) if not found then Director > Year (+/-2) > Title (fuzzy match)

(We found Director(s) was better (i.e. faster and fewer 'possibles') than trying to use Actors for the initial matches retrieval)