Hi,

On Sat, Jun 15, 2013 at 6:55 AM, Pradeep B <[email protected]> wrote:
> Hi
> I have just started out on lucene and experimenting with some possibilities.
> My goal is to try to exploit an existing database index (which in my case
> is an inverted index)  to serve as a Lucene Index.
> this helps me avoid need of additional indexing time and storage space.
>
> Is this possible ?

You might be able to write a custom codec to do it. But this would be
a very tedious task and the result would likely be much slower than
Lucene's default codec (because you would need to keep on doing
translations between Lucene's doc IDs and your database index internal
IDs) so wouldn't recommend doing it.

--
Adrien

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to