Interface tools for viewing Lucene search indexes

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?

have you tried apache tika to see what’s actually getting indexed? it’ll show you how your content gets parsed before it hits lucene. what specific issues did you run into with luke? there might be workarounds.

i’ve used elasticsearch-head too, it works pretty good for lucene stuff. lucene-luke-web is def better than the desktop one, more reliable. if u wanna go DIY, writing Java with IndexReader is a solid choice, not too hard and gets u the details fast!