RE: How to Add New Fields and Fields Types Programmatically Using Solrj

2016-07-18 Thread Jeniba Johnson
Thanks a lot Steve. It worked out. Regards, Jeniba Johnson -Original Message- From: Steve Rowe [mailto:sar...@gmail.com] Sent: Monday, July 18, 2016 7:57 PM To: solr-user@lucene.apache.org Subject: Re: How to Add New Fields and Fields Types Programmatically Using Solrj Hi Jeniba

Re: How to Add New Fields and Fields Types Programmatically Using Solrj

2016-07-18 Thread Steve Rowe
Hi Jeniba, You can add fields and field types using Solrj with SchemaRequest.Update subclasses - see here for a list: There are quite a few examples of doing both in the tests:

FW: How to Add New Fields and Fields Types Programmatically Using Solrj

2016-07-17 Thread Jeniba Johnson
Hi, I have configured solr5.3.1 and started Solr in schema less mode. Using SolrInputDocument, Iam able to add new fields in solrconfig.xml using Solrj. How to specify the field type of a field using Solrj. Eg How can I add field type properties using SolrInputDocument programmatically using