当前位置: 首页>>代码示例>>Python>>正文


Python SolrConnection.search方法代码示例

本文整理汇总了Python中collective.solr.solr.SolrConnection.search方法的典型用法代码示例。如果您正苦于以下问题:Python SolrConnection.search方法的具体用法?Python SolrConnection.search怎么用?Python SolrConnection.search使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在collective.solr.solr.SolrConnection的用法示例。


在下文中一共展示了SolrConnection.search方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_search

# 需要导入模块: from collective.solr.solr import SolrConnection [as 别名]
# 或者: from collective.solr.solr.SolrConnection import search [as 别名]
 def test_search(self):
     search_request = getData('search_request.txt')
     search_response = getData('search_response.txt')
     c = SolrConnection(host='localhost:8983', persistent=True)
     output = fakehttp(c, search_response)
     res = c.search(q='+id:[* TO *]', wt='xml', rows='10', indent='on')
     res = fromstring(res.read())
     self.failUnlessEqual(str(output), search_request)
     self.failUnless(res.find(('.//doc')))
开发者ID:Jarn,项目名称:collective.solr,代码行数:11,代码来源:test_solr.py

示例2: test_search

# 需要导入模块: from collective.solr.solr import SolrConnection [as 别名]
# 或者: from collective.solr.solr.SolrConnection import search [as 别名]
 def test_search(self):
     search_request = getData('search_request.txt')
     search_response = getData('search_response.txt')
     c = SolrConnection(host='localhost:8983', persistent=True)
     output = fakehttp(c, search_response)
     res = c.search(q='+id:[* TO *]', fl='* score', wt='xml', rows='10', indent='on')
     res = fromstring(res.read())
     normalize = lambda x: sorted(x.split('&'))      # sort request params
     self.assertEqual(normalize(output.get()), normalize(search_request))
     self.failUnless(res.find(('.//doc')))
开发者ID:andrgrau,项目名称:collective.solr,代码行数:12,代码来源:test_solr.py

示例3: test_search

# 需要导入模块: from collective.solr.solr import SolrConnection [as 别名]
# 或者: from collective.solr.solr.SolrConnection import search [as 别名]
    def test_search(self):
        # XXX: Solr 7 has a new query param 'q.op' which can not be passed to
        # the search method in Python.
        # This is why we have commented out code here.
        search_request = getData('search_request.txt').rstrip('\n')
        search_response = getData('search_response.txt')
        c = SolrConnection(host='localhost:8983', persistent=True)
        output = fakehttp(c, search_response)
        parameters = {'q': '+id:[* TO *]',
                      'fl': '* score',
                      'wt': 'xml',
                      'rows': '10',
                      'indent': 'on',
                      'q.op': 'AND',
                      'lowercaseOperators': 'true',
                      'sow': 'true'}

        res = c.search(**parameters)
        res = fromstring(res.read())
        normalize = lambda x: sorted(x.split('&'))      # sort request params
        self.assertEqual(normalize(output.get()), normalize(search_request))
        self.failUnless(res.find(('.//doc')))
开发者ID:collective,项目名称:collective.solr,代码行数:24,代码来源:test_solr.py

示例4: test_search_with_custom_request_handler

# 需要导入模块: from collective.solr.solr import SolrConnection [as 别名]
# 或者: from collective.solr.solr.SolrConnection import search [as 别名]
 def test_search_with_custom_request_handler(self):
     search_response = getData('search_response.txt')
     c = SolrConnection(host='localhost:8983', persistent=True)
     fakehttp(c, search_response)
     c.search(request_handler='custom', q='+id:[* TO *]')
     self.assertEqual('/solr/custom', c.conn.url)
开发者ID:FHNW,项目名称:collective.solr,代码行数:8,代码来源:test_solr.py


注:本文中的collective.solr.solr.SolrConnection.search方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。