Re: example for "parse-date" processor

2019-09-03 Thread Arturas Mazeika
Hi Jörn, I am not supplying the name in the update chain. I am not sure pysolr supports it yet: def __init__( self, url, decoder=None, timeout=60, results_cls=Results, search_handler="select", use_qt_param=False, always_commit=False, auth=None, verify=True, ): How can I define it as default? Ch

Re: example for "parse-date" processor

2019-09-03 Thread Jörn Franke
How do you send the request? You need to specify the update.chain parameter with the name of the Update chain or define it as default > Am 03.09.2019 um 12:14 schrieb Arturas Mazeika : > > Hi Solr Fans, > > I am trying to figure out how to use the parse-date processor for pdates. > > I am abl

example for "parse-date" processor

2019-09-03 Thread Arturas Mazeika
Hi Solr Fans, I am trying to figure out how to use the parse-date processor for pdates. I am able to insert data with this python code to a solr collection/core: solr = pysolr.Solr('http://localhost:/solr/core1', timeout=10) solr.add([ { "t": '2017-08-19T21:00:42.043Z', } ])