I think you might need to post a little bit more detail about what you are
trying to solve.  Are you trying to index one field in one table in your
database, several fields, several tables?

As a general idea, you will need to create a Lucene Document object for each
record you put into the search engine. The document consists of fields,
which are name/value pairs.  So if you had a "title", "content", and
"uniqueid" fields in your table, you would create Lucene Field objects for
each of those fields, add them to a Document, and then add the Document to
an index. This is a very simplified explanation :)

Jeff
----- Original Message ----- 
From: <[EMAIL PROTECTED]>
To: "Lucene Users List" <[EMAIL PROTECTED]>
Sent: Monday, July 07, 2003 1:51 PM
Subject: Re: Postgres and lucene


> Thanks, I'll look into it. It looks like Dspace mgiht be compatable with
> what I need. I'm also looking for how to implement this myself, since
> the scope is fairly small, and Dspace might be too much for what I need.
>
> Quoting Xuheng Xu <[EMAIL PROTECTED]>:
>
> > DSpace is using Postgres and lucene.
> >
> > http://www.dspace.org
> >
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail:
> > [EMAIL PROTECTED]
> >
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to