On Sep 4, 2008, at 8:27 AM, Cam Bazz wrote:
hello, is there no other way then making xml files and feeding those to solr?I just want to feed solr programmatically. - without xml
There are several options. You can feed Solr XML, or CSV, or use any of the Solr client APIs (though those use XML under the covers for indexing documents, but transparently). A more advanced option is to use Solr in embedded mode where you use its Java API directly with no intermediate representation needed.
Erik