: probably you'll need http client module (commons-httpclient or something)


More specifically: when dealing with lucene, the concept of a "document"
is very specific: it is an instance of
org.apache.lucene.document.Document.  how you construct one of these
Document objects in your application is up to you.  if you want to index
files on disk, you can write some code to open those files, and construct
a Document for each.  if you want to index some remote URLs, you can write
some code to fetch those URLs and construct a Document for each.


-Hoss


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

Reply via email to