Whoosh index viewer
I'm using haystack with whoosh as backend for a Django app. Is there any way to view the content (in a easy to read format) of the indexes generated by whoosh? I'd like to see what data was indexed and how so I can better understand how it works. zeekay You can do this pretty easily from python's interactive console: >>> 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']> You can perform search queries directly on your index