Search code examples
phpzend-frameworklucenezend-search-lucene

How to find similar/related text with Zend Lucene?


Say I need to make searching for related titles just like stackoverflow does before you add your question or digg.com before submitting news.

I didn't find a way how to do this with Zend Lucene. There are setSlop method for queries, but as I understand, it doesn't help.

Is there any way to do this kind of searches?


Solution

  • I figured that to do related search you should just pass the query string to the $index->find method. It will find not only the exact matches but also similar ones:

    $index->find('top 10 cars');
    

    result:

    Top 10 Funniest Cars
    Top 11 Celebrities Cars
    Top 6 Barbeque Cars
    Top 10 Futuristic Concept Cars
    Top 5 Classic Oldest Cars Ever