.oO SearXNG Developer Documentation Oo.
Loading...
Searching...
No Matches
solr.py
Go to the documentation of this file.
1
# SPDX-License-Identifier: AGPL-3.0-or-later
2
""".. sidebar:: info
3
4
- :origin:`solr.py <searx/engines/solr.py>`
5
- `Solr <https://solr.apache.org>`_
6
- `Solr Resources <https://solr.apache.org/resources.html>`_
7
- `Install Solr <https://solr.apache.org/guide/installing-solr.html>`_
8
9
Solr_ is a popular search engine based on Lucene, just like Elasticsearch_. But
10
instead of searching in indices, you can search in collections.
11
12
Example
13
=======
14
15
This is an example configuration for searching in the collection
16
``my-collection`` and get the results in ascending order.
17
18
.. code:: yaml
19
20
- name: solr
21
engine: solr
22
shortcut: slr
23
base_url: http://localhost:8983
24
collection: my-collection
25
sort: asc
26
enable_http: true
27
28
"""
29
30
# pylint: disable=global-statement
31
32
from
urllib.parse
import
urlencode
33
from
searx.exceptions
import
SearxEngineAPIException
34
from
searx.result_types
import
EngineResults
35
from
searx.extended_types
import
SXNG_Response
36
37
38
base_url =
'http://localhost:8983'
39
collection =
''
40
rows = 10
41
sort =
''
# sorting: asc or desc
42
field_list =
'name'
# list of field names to display on the UI
43
default_fields =
''
# default field to query
44
query_fields =
''
# query fields
45
_search_url =
''
46
paging =
True
47
48
49
def
init
(_):
50
if
collection ==
''
:
51
raise
ValueError(
'collection cannot be empty'
)
52
53
global
_search_url
54
_search_url = base_url +
'/solr/'
+ collection +
'/select?{params}'
55
56
57
def
request
(query, params):
58
query_params = {
'q'
: query,
'rows'
: rows}
59
if
field_list !=
''
:
60
query_params[
'fl'
] = field_list
61
if
query_fields !=
''
:
62
query_params[
'qf'
] = query_fields
63
if
default_fields !=
''
:
64
query_params[
'df'
] = default_fields
65
if
sort !=
''
:
66
query_params[
'sort'
] = sort
67
68
if
'pageno'
in
params:
69
query_params[
'start'
] = rows * (params[
'pageno'
] - 1)
70
71
params[
'url'
] = _search_url.format(params=urlencode(query_params))
72
73
return
params
74
75
76
def
response
(resp: SXNG_Response) -> EngineResults:
77
try
:
78
resp_json = resp.json()
79
except
Exception
as
e:
80
raise
SearxEngineAPIException
(
"failed to parse response"
)
from
e
81
82
if
"error"
in
resp_json:
83
raise
SearxEngineAPIException
(resp_json[
"error"
][
"msg"
])
84
85
res =
EngineResults
()
86
87
for
result
in
resp_json[
"response"
][
"docs"
]:
88
kvmap = {key: str(value)
for
key, value
in
result.items()}
89
if
not
kvmap:
90
continue
91
res.add(res.types.KeyValue(kvmap=kvmap))
92
93
return
res
searx.exceptions.SearxEngineAPIException
Definition
exceptions.py:54
searx.result_types.EngineResults
Definition
__init__.py:51
searx.engines.solr.request
request(query, params)
Definition
solr.py:57
searx.engines.solr.response
EngineResults response(SXNG_Response resp)
Definition
solr.py:76
searx.engines.solr.init
init(_)
Definition
solr.py:49
searx.exceptions
Definition
exceptions.py:1
searx.extended_types
Definition
extended_types.py:1
searx.result_types
Definition
__init__.py:1
searxng
searx
engines
solr.py
Generated on Mon Mar 31 2025 23:37:38 for .oO SearXNG Developer Documentation Oo. by
1.13.2