added support for boosting fields and documents to python solr interface ------------------------------------------------------------------------
Key: SOLR-577 URL: https://issues.apache.org/jira/browse/SOLR-577 Project: Solr Issue Type: Improvement Components: clients - python Environment: linux, python Reporter: Rob Young Added the ability to set boosts on fields and documents when indexing. This is done through two new classes solr.Document and solr.Field c = solr.SolrConnection(host='localhost:8081') c.add(id='123', name=solr.Field('this is a field', boost=1.5)) doc = solr.Document(boost=1.5) doc.add(solr.Field(name='title', value="a value for my field", boost=1.1)) c.addDoc(doc) -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.