如何获取 Whoosh 索引中所有术语的列表?
How do I get the list of all terms in a Whoosh index?
我想看看哪些术语用于索引。这主要用于调试,以防我需要在将文档发送到 Whoosh 之前对文档进行一些额外的预处理。一个清单就可以了。有没有变量给我这个(可能在 whoosh.index
中)?
使用:
whoosh.reading.IndexReader.all_terms()
Yields (fieldname, text) tuples for every term in the index.
我想看看哪些术语用于索引。这主要用于调试,以防我需要在将文档发送到 Whoosh 之前对文档进行一些额外的预处理。一个清单就可以了。有没有变量给我这个(可能在 whoosh.index
中)?
使用:
whoosh.reading.IndexReader.all_terms()
Yields (fieldname, text) tuples for every term in the index.