[ 
https://issues.apache.org/jira/browse/SOLR-577?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12638797#action_12638797
 ] 

Dorneles Tremea commented on SOLR-577:
--------------------------------------

This issue can now be closed, as it's being tracked by:

http://code.google.com/p/solrpy/issues/detail?id=6

> 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
>         Attachments: solr.py
>
>
> 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.

Reply via email to