我正在使用haystack作为Django应用程序的后端。
有没有办法查看whoosh生成的索引的内容(以易于阅读的格式)?我想看看哪些数据被编入索引,以及如何更好地理解它是如何工作的。
答案 0 :(得分:15)
您可以从python的交互式控制台轻松完成此操作:
>>> from whoosh.index import open_dir
>>> ix = open_dir('whoosh_index')
>>> ix.schema
<<< <Schema: ['author', 'author_exact', 'content', 'django_ct', 'django_id', 'id', 'lexer', 'lexer_exact', 'published', 'published_exact']>
您可以直接在索引上执行搜索查询,并执行各种有趣的操作。要获取每个文档,我可以这样做:
>>> from whoosh.query import Every
>>> results = ix.searcher().search(Every('content'))
如果你想要全部打印出来(用于查看或诸如此类),你可以使用python脚本轻松地完成打印。
for result in results:
print "Rank: %s Id: %s Author: %s" % (result.rank, result['id'], result['author'])
print "Content:"
print result['content']
您也可以直接从django视图中的whoosh返回文档(对于使用django模板系统的漂亮格式化):请参阅whoosh文档以获取更多信息:http://packages.python.org/Whoosh/index.html。
答案 1 :(得分:7)
from whoosh.index import open_dir
ix = open_dir('whoosh_index')
ix.searcher().documents() # will show all documents in the index.