.oO SearXNG Developer Documentation Oo.
Loading...
Searching...
No Matches
searx.engines.redis_server Namespace Reference

Functions

 init (_engine_settings)
 
EngineResults search (query, _params)
 
list[dict] search_keys (query)
 

Variables

str engine_type = 'offline'
 
str host = '127.0.0.1'
 
int port = 6379
 
str password = ''
 
int db = 0
 
bool paging = False
 
bool exact_match_only = True
 
 _redis_client = None
 

Detailed Description

Redis is an open source (BSD licensed), in-memory data structure (key value
based) store.  Before configuring the ``redis_server`` engine, you must install
the dependency redis_.

Configuration
=============

Select a database to search in and set its index in the option ``db``.  You can
either look for exact matches or use partial keywords to find what you are
looking for by configuring ``exact_match_only``.

Example
=======

Below is an example configuration:

.. code:: yaml

  # Required dependency: redis

  - name: myredis
    shortcut : rds
    engine: redis_server
    exact_match_only: false
    host: '127.0.0.1'
    port: 6379
    enable_http: true
    password: ''
    db: 0

Implementations
===============

Function Documentation

◆ init()

searx.engines.redis_server.init ( _engine_settings)

Definition at line 56 of file redis_server.py.

56def init(_engine_settings):
57 global _redis_client # pylint: disable=global-statement
58 _redis_client = redis.StrictRedis(
59 host=host,
60 port=port,
61 db=db,
62 password=password or None,
63 decode_responses=True,
64 )
65
66

◆ search()

EngineResults searx.engines.redis_server.search ( query,
_params )

Definition at line 67 of file redis_server.py.

67def search(query, _params) -> EngineResults:
68 res = EngineResults()
69
70 if not exact_match_only:
71 for kvmap in search_keys(query):
72 res.add(res.types.KeyValue(kvmap=kvmap))
73 return res
74
75 kvmap: dict[str, str] = _redis_client.hgetall(query)
76 if kvmap:
77 res.add(res.types.KeyValue(kvmap=kvmap))
78 elif " " in query:
79 qset, rest = query.split(" ", 1)
80 for row in _redis_client.hscan_iter(qset, match='*{}*'.format(rest)):
81 res.add(res.types.KeyValue(kvmap={row[0]: row[1]}))
82 return res
83
84

References search_keys().

+ Here is the call graph for this function:

◆ search_keys()

list[dict] searx.engines.redis_server.search_keys ( query)

Definition at line 85 of file redis_server.py.

85def search_keys(query) -> list[dict]:
86 ret = []
87 for key in _redis_client.scan_iter(match='*{}*'.format(query)):
88 key_type = _redis_client.type(key)
89 res = None
90
91 if key_type == 'hash':
92 res = _redis_client.hgetall(key)
93 elif key_type == 'list':
94 res = dict(enumerate(_redis_client.lrange(key, 0, -1)))
95
96 if res:
97 res['redis_key'] = key
98 ret.append(res)
99 return ret

Referenced by search().

+ Here is the caller graph for this function:

Variable Documentation

◆ _redis_client

searx.engines.redis_server._redis_client = None
protected

Definition at line 53 of file redis_server.py.

◆ db

int searx.engines.redis_server.db = 0

Definition at line 47 of file redis_server.py.

◆ engine_type

str searx.engines.redis_server.engine_type = 'offline'

Definition at line 41 of file redis_server.py.

◆ exact_match_only

bool searx.engines.redis_server.exact_match_only = True

Definition at line 51 of file redis_server.py.

◆ host

str searx.engines.redis_server.host = '127.0.0.1'

Definition at line 44 of file redis_server.py.

◆ paging

bool searx.engines.redis_server.paging = False

Definition at line 50 of file redis_server.py.

◆ password

str searx.engines.redis_server.password = ''

Definition at line 46 of file redis_server.py.

◆ port

int searx.engines.redis_server.port = 6379

Definition at line 45 of file redis_server.py.