Hi Danny,
On 5/8/07, Danny Huang <[EMAIL PROTECTED]> wrote:
Can Solr index database records directly by accessing whatever db server I have, or does it only index web documents (via http)?
Solr doesn't collect documents, you build documents and post them to Solr. So you can query your database, and build a doc and post it. Or you could use a crawler and build documents from web pages. There are tools that access the database such as DBSight, and I believe solr-103 is starting to address this, but I haven't tried them. https://issues.apache.org/jira/browse/SOLR-103 See http://lucene.apache.org/solr/tutorial.html#Indexing+Data for a tutorial on how to get documents into solr. BTW, I think queries like this should go to the solr-user list, rather than solr-dev Tom