Building a fast semantic MySQL search engine for private articles from scratch

前端 未结 2 1001
伪装坚强ぢ
伪装坚强ぢ 2021-02-06 18:50

I am working on a project that will involve full-text and semantic searches of articles within the site (if it\'s not possible to combine it,

相关标签:
2条回答
  • 2021-02-06 19:25

    This book may be useful for someone reading this thread. I just found it on Amazon.

    http://www.amazon.com/E-Librarian-Service-User-Friendly-Libraries-X-media-publishing/dp/3642177425

    0 讨论(0)
  • 2021-02-06 19:38

    I would use Apache Solr. I think it's more flexible than Sphinx. Solr supports full-text search and I believe has add-ons for semantic support (like siren). Solr is the serverized version of Lucene.

    Solr supports a SynonymFilter: http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters#SynonymFilter

    This post discusses some strategies for optimizing content retrieval http://www.lucidimagination.com/devzone/technical-articles/optimizing-findability-lucene-and-solr

    0 讨论(0)
提交回复
热议问题