Hi,

One good option is to consider using Solr as it helps to access the index
remotely. If you want to use Lucene and you are ready to build your own API
then you could have a web application, which will receive user query,
search in the index and return the result set in user expected fashion.

You could build your App using RMI but this may listen in some other port.
Having a web app would be easier.

Regards
Aditya
www.findbestopensource.com - Finds best open source products across all
platforms


On Tue, Jan 10, 2012 at 8:29 AM, Trejkaz <trej...@trypticon.org> wrote:

> Hi all.
>
> I want to access a Lucene index remotely.  I'm aware of a couple of
> options for it which seem to operate more or less at the IndexSearcher
> level - send a query, get back results.
>
> But in our case, we use IndexReader directly for building statistics,
> which is too slow to do via individual queries.
>
> Additionally, we want to access the thing over port 80 so that people
> can punch through firewalls without needing a proxy.
>
> I was going to write off this set of wishes as not implementable and
> start writing our own API for each of our specific statistical tasks
> so that we can do all of that server-side, but I thought it wouldn't
> hurt to ask here in case someone happened to have seen a solution to
> this sort of problem.
>
> Currently we're accessing the files straight over the network, but
> there are a number of issues (lack of explicit authentication,
> susceptibility to issues with whatever protocol is used to share the
> files and so forth.)
>
> TX
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
> For additional commands, e-mail: java-user-h...@lucene.apache.org
>
>

Reply via email to