本文整理汇总了Python中scorched.SolrInterface.commit方法的典型用法代码示例。如果您正苦于以下问题:Python SolrInterface.commit方法的具体用法?Python SolrInterface.commit怎么用?Python SolrInterface.commit使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类scorched.SolrInterface
的用法示例。
在下文中一共展示了SolrInterface.commit方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_highlighting
# 需要导入模块: from scorched import SolrInterface [as 别名]
# 或者: from scorched.SolrInterface import commit [as 别名]
def test_highlighting(self):
dsn = os.environ.get("SOLR_URL", 'http://localhost:8983/solr')
si = SolrInterface(dsn)
docs = {
"id": "978-0641723445",
"cat": ["book", "hardcover"],
"name": u"The Höhlentripp Strauß",
"author": u"Röüß Itoa",
"series_t": u"Percy Jackson and \N{UMBRELLA}nicode",
"sequence_i": 1,
"genre_s": "fantasy",
"inStock": True,
"price": 12.50,
"pages_i": 384
}
si.add(docs)
si.commit()
res = si.query(author=u"Röüß").highlight('author').execute()
highlighted_field_result = u'<em>Röüß</em> Itoa'
# Does the highlighting attribute work?
self.assertEqual(
res.highlighting['978-0641723445']['author'][0],
highlighted_field_result,
)
# Does each item have highlighting attributes?
self.assertEqual(
res.result.docs[0]['solr_highlights']['author'][0],
highlighted_field_result,
)
示例2: test_debug
# 需要导入模块: from scorched import SolrInterface [as 别名]
# 或者: from scorched.SolrInterface import commit [as 别名]
def test_debug(self):
dsn = os.environ.get("SOLR_URL",
"http://localhost:8983/solr")
si = SolrInterface(dsn)
docs = {
"id": "978-0641723445",
"cat": ["book", "hardcover"],
"name": u"The Höhlentripp Strauß",
"author": u"Röüß Itoa",
"series_t": u"Percy Jackson and \N{UMBRELLA}nicode",
"sequence_i": 1,
"genre_s": "fantasy",
"inStock": True,
"price": 12.50,
"pages_i": 384
}
si.add(docs)
si.commit()
res = si.query(author=u"Röüß").debug().execute()
self.assertEqual(res.result.numFound, 1)
for k, v in docs.items():
self.assertEqual(res.result.docs[0][k], v)
self.assertTrue('explain' in res.debug)
# deactivate
res = si.query(author=u"Röüß").execute()
self.assertFalse('explain' in res.debug)
示例3: test_filter_query
# 需要导入模块: from scorched import SolrInterface [as 别名]
# 或者: from scorched.SolrInterface import commit [as 别名]
def test_filter_query(self):
dsn = os.environ.get("SOLR_URL", "http://localhost:8983/solr")
si = SolrInterface(dsn)
si.add(self.docs)
si.commit()
res = si.query(si.Q(**{"*": "*"})).filter(cat="hardcover").filter(genre_s="fantasy").execute()
self.assertEqual(res.result.numFound, 1)
self.assertEqual([x["name"] for x in res.result.docs], ["The Lightning Thief"])
示例4: test_mlt
# 需要导入模块: from scorched import SolrInterface [as 别名]
# 或者: from scorched.SolrInterface import commit [as 别名]
def test_mlt(self):
dsn = os.environ.get("SOLR_URL", "http://localhost:8983/solr")
si = SolrInterface(dsn)
si.add(self.docs)
si.commit()
res = si.mlt_query("genre_s", interestingTerms="details", mintf=1, mindf=1).query(id="978-0641723445").execute()
self.assertEqual(res.result.numFound, 2)
self.assertEqual(res.interesting_terms, ["genre_s:fantasy", 1.0])
self.assertEqual([x["author"] for x in res.result.docs], ["Rick Riordan", "Jostein Gaarder"])
示例5: test_multi_value_dates
# 需要导入模块: from scorched import SolrInterface [as 别名]
# 或者: from scorched.SolrInterface import commit [as 别名]
def test_multi_value_dates(self):
dsn = os.environ.get("SOLR_URL", "http://localhost:8983/solr")
si = SolrInterface(dsn)
docs = {
"id": "978",
"important_dts": [
"1969-01-01",
"1969-01-02",
],
}
si.add(docs)
si.commit()
_ = si.query(id=u"978").execute()
示例6: test_mlt_component_query
# 需要导入模块: from scorched import SolrInterface [as 别名]
# 或者: from scorched.SolrInterface import commit [as 别名]
def test_mlt_component_query(self):
dsn = os.environ.get("SOLR_URL", "http://localhost:8983/solr")
si = SolrInterface(dsn)
si.add(self.docs)
si.commit()
res = si.query(id="978-0641723445").mlt("genre_s", mintf=1, mindf=1).execute()
# query shows only one
self.assertEqual(res.result.numFound, 1)
# but in more like this we get two
self.assertEqual(len(res.more_like_these["978-0641723445"].docs), 2)
self.assertEqual(
[x["author"] for x in res.more_like_these["978-0641723445"].docs], ["Rick Riordan", "Jostein Gaarder"]
)
示例7: test_rollback
# 需要导入模块: from scorched import SolrInterface [as 别名]
# 或者: from scorched.SolrInterface import commit [as 别名]
def test_rollback(self):
dsn = os.environ.get("SOLR_URL",
"http://localhost:8983/solr")
si = SolrInterface(dsn)
si.delete_all()
si.add(self.docs)
si.commit()
res = si.query(genre_s="fantasy").execute()
self.assertEqual(res.result.numFound, 3)
# delete
res = si.delete_by_ids(res.result.docs[0]['id'])
self.assertEqual(res.status, 0)
# rollback
res = si.rollback()
self.assertEqual(res.status, 0)
res = si.query(genre_s="fantasy").execute()
self.assertEqual(res.result.numFound, 3)
示例8: test_query
# 需要导入模块: from scorched import SolrInterface [as 别名]
# 或者: from scorched.SolrInterface import commit [as 别名]
def test_query(self):
dsn = os.environ.get("SOLR_URL", "http://localhost:8983/solr")
si = SolrInterface(dsn)
si.add(self.docs)
si.commit()
res = si.query(genre_s="fantasy").execute()
self.assertEqual(res.result.numFound, 3)
# delete
si.delete_by_ids(res.result.docs[0]["id"])
si.commit()
res = si.query(genre_s="fantasy").execute()
self.assertEqual(res.result.numFound, 2)
res = si.query(genre_s="fantasy").execute(constructor=Book)
# test constructor
self.assertEqual(
[x.title for x in res.result.docs], ["The Sea of Monsters", "Sophie's World : The Greek Philosophers"]
)
示例9: test_count
# 需要导入模块: from scorched import SolrInterface [as 别名]
# 或者: from scorched.SolrInterface import commit [as 别名]
def test_count(self):
dsn = os.environ.get("SOLR_URL", "http://localhost:8983/solr")
si = SolrInterface(dsn)
docs = [{
"id": "1",
"genre_s": "fantasy",
}, {
"id": "2",
"genre_s": "fantasy",
}]
si.add(docs)
si.commit()
ungrouped_count = si.query(genre_s="fantasy").count()
ungrouped_count_expected = 2
self.assertEqual(ungrouped_count, ungrouped_count_expected)
grouped_count = si.query(genre_s="fantasy").group_by("genre_s").count()
grouped_count_expected = 1
self.assertEqual(grouped_count, grouped_count_expected)
示例10: test_facet_query
# 需要导入模块: from scorched import SolrInterface [as 别名]
# 或者: from scorched.SolrInterface import commit [as 别名]
def test_facet_query(self):
dsn = os.environ.get("SOLR_URL",
"http://localhost:8983/solr")
si = SolrInterface(dsn)
si.add(self.docs)
si.commit()
res = si.query(genre_s="fantasy").facet_by("cat").execute()
self.assertEqual(res.result.numFound, 3)
self.assertEqual([x['name'] for x in res.result.docs],
[u'The Lightning Thief',
u'The Sea of Monsters',
u"Sophie's World : The Greek Philosophers"])
self.assertEqual(res.facet_counts.__dict__,
{'facet_fields': {u'cat': [(u'book', 3),
(u'paperback', 2),
(u'hardcover', 1)]},
'facet_dates': {},
'facet_queries': {},
'facet_pivot': ()})
示例11: test_get
# 需要导入模块: from scorched import SolrInterface [as 别名]
# 或者: from scorched.SolrInterface import commit [as 别名]
def test_get(self):
dsn = os.environ.get("SOLR_URL", "http://localhost:8983/solr")
si = SolrInterface(dsn)
res = si.get("978-1423103349")
self.assertEqual(len(res), 0)
si.add(self.docs)
res = si.get("978-1423103349")
self.assertEqual(len(res), 1)
self.assertEqual(res[0]["name"], "The Sea of Monsters")
res = si.get(["978-0641723445", "978-1423103349", "nonexist"])
self.assertEqual(len(res), 2)
self.assertEqual([x["name"] for x in res], ["The Lightning Thief", "The Sea of Monsters"])
si.commit()
res = si.get(ids="978-1423103349", fields=["author"])
self.assertEqual(len(res), 1)
self.assertEqual(list(res[0].keys()), ["author"])
示例12: test_chunked_add
# 需要导入模块: from scorched import SolrInterface [as 别名]
# 或者: from scorched.SolrInterface import commit [as 别名]
def test_chunked_add(self):
dsn = os.environ.get("SOLR_URL",
"http://localhost:8983/solr")
si = SolrInterface(dsn)
self.assertEqual(len(self.docs), 4)
# chunk size = 1, chunks = 4
si.delete_all()
res = si.add(self.docs, chunk=1)
self.assertEqual(len(res), 4)
self.assertEqual([r.status for r in res], [0] * 4)
si.commit()
res = si.query(genre_s="fantasy").execute()
self.assertEqual(res.result.numFound, 3)
# chunk size = 2, chunks = 2
si.delete_all()
res = si.add(self.docs, chunk=2)
self.assertEqual(len(res), 2)
self.assertEqual([r.status for r in res], [0] * 2)
si.commit()
res = si.query(genre_s="fantasy").execute()
self.assertEqual(res.result.numFound, 3)
示例13: test_facet_query
# 需要导入模块: from scorched import SolrInterface [as 别名]
# 或者: from scorched.SolrInterface import commit [as 别名]
def test_facet_query(self):
dsn = os.environ.get("SOLR_URL", "http://localhost:8983/solr")
si = SolrInterface(dsn)
si.add(self.docs)
si.commit()
res = si.query(genre_s="fantasy").facet_by("cat").execute()
self.assertEqual(res.result.numFound, 3)
self.assertEqual(
[x["name"] for x in res.result.docs],
["The Lightning Thief", "The Sea of Monsters", "Sophie's World : The Greek Philosophers"],
)
self.assertEqual(
res.facet_counts.__dict__,
{
"facet_fields": {"cat": [("book", 3), ("paperback", 2), ("hardcover", 1)]},
"facet_dates": {},
"facet_queries": {},
"facet_ranges": {},
"facet_pivot": (),
},
)
示例14: test_cursor
# 需要导入模块: from scorched import SolrInterface [as 别名]
# 或者: from scorched.SolrInterface import commit [as 别名]
def test_cursor(self):
dsn = os.environ.get("SOLR_URL",
"http://localhost:8983/solr")
si = SolrInterface(dsn)
si.add(self.docs)
si.commit()
cursor = si.query(genre_s="fantasy").sort_by('id').cursor(rows=1)
# Count how often we hit solr
search_count = [0]
old_search = cursor.search.interface.search
def search_proxy(*args, **kwargs):
search_count[0] += 1
return old_search(*args, **kwargs)
cursor.search.interface.search = search_proxy
list(cursor)
self.assertEqual(search_count[0], 4) # 3 + 1 to realize we are done
search_count = [0]
cursor = si.query(genre_s="fantasy").sort_by('id') \
.cursor(constructor=Book, rows=2)
# test constructor
self.assertEqual([x.title for x in cursor],
[u'The Lightning Thief',
u'The Sea of Monsters',
u"Sophie's World : The Greek Philosophers"])
self.assertEqual(search_count[0], 3)
# empty results
search_count = [0]
cursor = si.query(genre_s="nonexist").sort_by('id') \
.cursor(constructor=Book)
self.assertEqual(list(cursor), [])
self.assertEqual(search_count[0], 1)
示例15: tearDown
# 需要导入模块: from scorched import SolrInterface [as 别名]
# 或者: from scorched.SolrInterface import commit [as 别名]
def tearDown(self):
dsn = os.environ.get("SOLR_URL",
"http://localhost:8983/solr")
si = SolrInterface(dsn)
si.delete_all()
si.commit()