Is there a pure Python Lucene?

后端 未结 8 925
我在风中等你
我在风中等你 2021-01-30 16:51

The ruby folks have Ferret. Someone know of any similar initiative for Python? We\'re using PyLucene at current, but I\'d like to investigate moving to pure Python searching.

相关标签:
8条回答
  • 2021-01-30 17:24

    The only one pure-python (not involving even C extension) search solution I know of is Nucular. It's slow (much slower than PyLucene) and unstable yet.

    We moved from PyLucene-based home baked search and indexing to Solr but YMMV.

    0 讨论(0)
  • 2021-01-30 17:26

    For non-pure Python, Sphinx Search with Python API works the fastest. From the benchmarks from multiple blogs, Sphinx Search is way faster than Lucene, uses way less memory and it is in C.

    I am developing a multi-document search engine based on it, using python and web2py as framework.

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