Re: Solr and Oracle

2006-11-24 Thread Walter Underwood
I am doing this. Let's assume that you can make a query so that each row of the result is one document that you want to index. Create an XML document in Solr update format in a StringBuilder, then POST that to the Solr instance. After about 1000 documents, post a "". After all the rows, post a "",

Re: Solr and Oracle

2006-11-24 Thread Yonik Seeley
On 11/23/06, Nicolas St-Laurent <[EMAIL PROTECTED]> wrote: Does someone use Solr to index/search in a database instead of XML documents ? Solr doesn't index/search XML documents, only uses XML as a transport syntax for adding documents to Solr. There has been some recent work on a CSV loader,

Re: Solr and Oracle

2006-11-24 Thread Nicolas St-Laurent
Thank you Bertrand. The documentation on Solr is still sparse. I've already looked in SolrResources, find some idea, but not exactly what I need. When my solution will work, I will document it into the wiki. Nicolas Le 06-11-24 à 02:48, Bertrand Delacretaz a écrit : On 11/23/06, Nicolas

duplicate deleting

2006-11-24 Thread Zaheed Haque
Hi: I have a following use case. I have 5 sets of large different XML dump from 5 database. All the XML file has the same structure. However there are duplicate entries which are in different files with different ID's. (i.e. solr doc, 1 db entry = 1 solr doc). How can I remove duplicate where 3 o

Re: Solr and Oracle

2006-11-24 Thread Bertrand Delacretaz
On 11/23/06, Nicolas St-Laurent <[EMAIL PROTECTED]> wrote: ...I index huge Oracle tables with Lucene with a custom made indexer/search engine. But I would prefer to use Solr instead... Instead of using Lucene's API directly, with Solr you'll have to add your documents to the index using HTTP P