Skip to content
This repository has been archived by the owner on Sep 7, 2023. It is now read-only.

Commit

Permalink
[enh] add redis offline engine
Browse files Browse the repository at this point in the history
  • Loading branch information
asciimoo committed May 30, 2021
1 parent 22a79a4 commit 97269be
Show file tree
Hide file tree
Showing 2 changed files with 67 additions and 0 deletions.
59 changes: 59 additions & 0 deletions searx/engines/redis_server.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
# SPDX-License-Identifier: AGPL-3.0-or-later
"""
Redis engine (Offline)
"""

# pylint: disable=missing-function-docstring

import redis

engine_type = 'offline'
# redis connection variables
host = '127.0.0.1'
port = 6379
password = ''
db = 0
# engine specific variables
paging = False
result_template = 'key-value.html'
exact_match_only = True

redis_client = redis.StrictRedis(
host=host,
port=port,
db=db,
password=password or None,
decode_responses=True,
)


def search(query, params):
if not exact_match_only:
return search_keys(query)
ret = redis_client.hgetall(query)
if ret:
ret['template'] = result_template
return [ret]
if ' ' in query:
qset, rest = query.split(' ', 1)
ret = []
for res in redis_client.hscan_iter(qset, match='*{}*'.format(rest)):
ret.append({res[0]: res[1], 'template': result_template})
return ret
return []


def search_keys(query):
ret = []
for key in redis_client.scan_iter(match='*{}*'.format(query)):
key_type = redis_client.type(key)
res = None
if key_type == 'hash':
res = redis_client.hgetall(key)
elif key_type == 'list':
res = dict(enumerate(redis_client.lrange(key, 0, -1)))
if res:
res['template'] = result_template
res['redis_key'] = key
ret.append(res)
return ret
8 changes: 8 additions & 0 deletions searx/settings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -941,6 +941,14 @@ engines:
timeout : 10.0
disabled : True

# - name : myredis
# engine : redis_server
# exact_match_only : False
# host : '127.0.0.1'
# port : 6379
# password : ''
# db : 0

# tmp suspended: bad certificate
# - name : scanr structures
# shortcut: scs
Expand Down

0 comments on commit 97269be

Please sign in to comment.