Message10632

Author zyasoft
Recipients StefanGeissler, jeff.allen, zyasoft
Date 2016-01-11.05:05:29
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1452488730.51.0.879852368165.issue2041@psf.upfronthosting.co.za>
In-reply-to
Content
Still present. My test:

# -*- coding: utf-8 -*-
import solr

# create a connection to a solr server
s = solr.SolrConnection('http://localhost:8983/solr')

# add a document to the index
doc = dict(
    id=2,
    title='Lucene in Thought',
    author=['Erik Hatcher', 'Otis Gospodnetić'],
    )
s.add(doc) #, commit=True)

# do a search
response = s.query('title:lucene')
for hit in response.results:
    print hit['title']
History
Date User Action Args
2016-01-11 05:05:30zyasoftsetmessageid: <1452488730.51.0.879852368165.issue2041@psf.upfronthosting.co.za>
2016-01-11 05:05:30zyasoftsetrecipients: + zyasoft, jeff.allen, StefanGeissler
2016-01-11 05:05:30zyasoftlinkissue2041 messages
2016-01-11 05:05:29zyasoftcreate