Message10632
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'] |
|
Date |
User |
Action |
Args |
2016-01-11 05:05:30 | zyasoft | set | messageid: <1452488730.51.0.879852368165.issue2041@psf.upfronthosting.co.za> |
2016-01-11 05:05:30 | zyasoft | set | recipients:
+ zyasoft, jeff.allen, StefanGeissler |
2016-01-11 05:05:30 | zyasoft | link | issue2041 messages |
2016-01-11 05:05:29 | zyasoft | create | |
|