pysolr
pysolr copied to clipboard
Pysolr — Python Solr client
`_to_python`'s behavior on lists / tuples to only convert the first value seems very arbitrary. It even fails with an `IndexError` on empty lists. This PR also fixes multivalued dynamic...
Bumps [requests](https://github.com/psf/requests) from 2.22.0 to 2.23.0. Changelog Sourced from requests's changelog. 2.23.0 (2020-02-19) Improvements Remove defunct reference to prefetch in Session __attrs__ (#5110) Bugfixes Requests no longer outputs password in...
Bumps [flake8-comprehensions](https://github.com/adamchainz/flake8-comprehensions) from 3.0.1 to 3.2.2. Changelog Sourced from flake8-comprehensions's changelog. 3.2.2 (2020-01-20) Remove check for dict comprehensions in rule C407 as it would also change the results for certain...
Remove clusterstate.json and listener since the node exists but Solr no longer updates it. This resulted in the collections property being overwritten with an empty state. Tested on Solr 7.7.2....
Bumps [flake8-bugbear](https://github.com/PyCQA/flake8-bugbear) from 20.1.0 to 20.1.4. Release notes Sourced from flake8-bugbear's releases. 20.1.4 Ignore keywords for B009/B010 20.1.3 Silence B009/B010 for non-identifiers State an ignore might be needed for optional...
I was going through https://lucene.apache.org/solr/guide/8_1/solr-tutorial.html and was trying to get pysolr working on my end. I noticed that the URI's no longer have trailing slashes and there's no way to...
# I have * [x] Tested with the latest release * [x] Tested with the current master branch * [x] Searched for similar existing issues ## Expected behaviour `solr_client.add([{'id': 'myid',...
The _update method in class SolrCloud invokes Solr._update which in turn invokes SolrCloud._send_request by line 564 or 568: https://github.com/django-haystack/pysolr/blob/da1522f5bcbfd209ea0b13ae355389cd327258bb/pysolr.py#L564 https://github.com/django-haystack/pysolr/blob/da1522f5bcbfd209ea0b13ae355389cd327258bb/pysolr.py#L568 This invocation would generate a randomized request to one of...
For security reasons, would it be possible to anonymized the URL in log messages of `send_request`, i.e. removing at least the password?
This patch adds support for named nested documents as supported by solr 8, as documented in the [reference guide](https://www-us.apache.org/dist/lucene/solr/ref-guide/apache-solr-ref-guide-8.1.pdf) (XML example on page 378). This in turn will support deeply...