ferret

DelayedJob with acts_as_ferret in production mode

一笑奈何 提交于 2020-01-06 16:41:31
问题 I get the following error when I run my task via DelayedJob: closed stream /usr/lib/ruby/1.8/drb/drb.rb:961:in `select' /usr/lib/ruby/1.8/drb/drb.rb:961:in `alive?' /usr/lib/ruby/1.8/drb/drb.rb:1211:in `alive?' /usr/lib/ruby/1.8/drb/drb.rb:1168:in `open' /usr/lib/ruby/1.8/drb/drb.rb:1166:in `each' /usr/lib/ruby/1.8/drb/drb.rb:1166:in `open' /usr/lib/ruby/1.8/drb/drb.rb:1163:in `synchronize' /usr/lib/ruby/1.8/drb/drb.rb:1163:in `open' /usr/lib/ruby/1.8/drb/drb.rb:1092:in `method_missing' /usr

Is there a pure Python Lucene?

早过忘川 提交于 2019-12-03 02:13:06
问题 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. 回答1: Whoosh is a new project which is similar to lucene, but is pure python. 回答2: 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. 回答3: I

Is there a pure Python Lucene?

两盒软妹~` 提交于 2019-12-02 17:16:31
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. Whoosh is a new project which is similar to lucene, but is pure python. 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. I recently found pyndexter . It provides abstract interface to various different backend full-text search engines/indexers.