1
votes

I'm building an application that has to store some gigabytes of log data (not exactly log data but similar) in a way so that the log data can be queried efficiently. I'm planning to use Lucene or something based on Lucene. While the data enters the index via the API I'd prefer not to build my own frontend for querying the data. I don't need anything fancy here, just a simple way to query the index.

I'm not sure if Solr would solve my problem. Is there something like a generic web frontend for querying Lucene indexes?

1
As a comment, as I do not have experience with it:Banana. This is a port of Kibana.cheffe

1 Answers

3
votes

Solr has the Velocity UI Response Writer which is a general search interface for Lucene indexes. Should probably work fine as long as you're able to serve your indexes through Solr. See Can a raw Lucene index be loaded by Solr for how to do this.