I’m working with hibernate-search along with hibernate-core in my project. Just like I can examine my database entities using various database management tools, I’m looking for a similar interface to inspect my Lucene search indexes created by hibernate-search.
I attempted to use Luke tool but ran into issues since the current version seems unstable and buggy. I also considered Solr which has nice admin interfaces, but from what I understand it’s more of a replacement for hibernate-search rather than a complementary tool.
What I really want is to be able to browse through the indexed terms and see exactly what data gets stored for my entities and their relationships. This would help me debug my search functionality and understand how my content is being processed.
Does anyone know of reliable tools or approaches for this kind of Lucene index inspection?