-------------------
- Bumped to v3.1.0! [Daniel Lindsley]
- Better Unicode behavior under Python 3. [Daniel Lindsley]
- Merge pull request 69 from zyegfryed/patch-1. [Daniel Lindsley]
Added MoreLikeThis handler to solrconfig.xml test cores.
- Added MoreLikeThis handler to solrconfig.xml test cores. [Sébastien
Fievet]
- README tweaks. Thanks to msabramo for the original patch! [Daniel
Lindsley]
- Slightly better tomcat errors. [Daniel Lindsley]
- Improved scraping of tomcat error. [Dougal Matthews]
When scraping for the HTML error message include
the description if found.
- Merge pull request 86 from anti-social/fix_eval. [Chris Adams]
Fixed eval in the _to_python method (thanks anti-social)
Ah, nice: since we no longer support Python 2.5 this is a great move.
- Fixed eval in the _to_python method. [Alexander Koval]
- Solr.add generator expression support (closes 81) [Chris Adams]
The only compatibility issue before was a logging statement using len()
on the input docs variable, which fails on generator expressions. Thanks
to timsavage for a patch changing this to measuring the message which
is actually sent to Solr instead
- Enable request's session pooling (closes 82) [Chris Adams]
Performing requests using a session enables urllib3's connection
pooling, reducing connection latency.
Thanks cody-young for the patch
Closes 83