You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-dev@lucene.apache.org by "Otis Gospodnetic (JIRA)" <ji...@apache.org> on 2010/01/15 18:46:54 UTC

[jira] Resolved: (SOLR-577) added support for boosting fields and documents to python solr interface

     [ https://issues.apache.org/jira/browse/SOLR-577?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Otis Gospodnetic resolved SOLR-577.
-----------------------------------

    Resolution: Won't Fix

Closing per comment.

> 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.