searxng/searx/shared/shared_abstract.py
Alexandre Flament 6e2872f436 [enh] add searx.shared
shared dictionary between the workers (UWSGI or werkzeug)
scheduler: run a task once every x seconds (UWSGI or werkzeug)
2021-01-12 11:47:17 +01:00

16 lines
246 B
Python

# SPDX-License-Identifier: AGPL-3.0-or-later
class SharedDict:
def get_int(self, key):
pass
def set_int(self, key, value):
pass
def get_str(self, key):
pass
def set_str(self, key, value):
pass