whoosh 全文 搜索

2015-10-21 11:49:17 +08:00
 cheerzeng
在做一个全文搜索的工具,用到 whoosh, 但是对于短语的搜索,不是很明白要怎么用, 请大神指教一下。
我看到的例子是:
http://whoosh.readthedocs.org/en/latest/quickstart.html

>>> from whoosh.index import create_in
>>> from whoosh.fields import *
>>> schema = Schema(title=TEXT(stored=True), path=ID(stored=True), content=TEXT)
>>> ix = create_in("indexdir", schema)
>>> writer = ix.writer()
>>> writer.add_document(title=u"First document", path=u"/a",
... content=u"This is the first document we've added!")
>>> writer.add_document(title=u"Second document", path=u"/b",
... content=u"The second one is even more interesting!")
>>> writer.commit()
>>> from whoosh.qparser import QueryParser
>>> with ix.searcher() as searcher:
... query = QueryParser("content", ix.schema).parse("first")
... results = searcher.search(query)
... results[0]

我用了这样的代码, 但是之后发现 parse("first") 里面跟的这个会被拆分成若干个独立的 word, 所以如果我用 parse("first man to buy a apple") 这样会找到各个字段对应的, 而不是这一条短语。

然后我看到了 QueryParser 里面,是有这个 parameter 的,不知道是不是可以达到我的目的,但是我不知道要怎么拿来用:
phraseclass – the query class to use for phrases. The default is whoosh.query.Phrase.


class whoosh.query.Phrase(fieldname, words, slop=1, boost=1.0, char_ranges=None)

Matches documents containing a given phrase.
2660 次点击
所在节点    Python
1 条回复
fire5
2015-10-22 16:03:05 +08:00

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/229810

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX