diff options
Diffstat (limited to 'searx/cache.py')
| -rw-r--r-- | searx/cache.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/cache.py b/searx/cache.py index 96644419b..7ba5c8886 100644 --- a/searx/cache.py +++ b/searx/cache.py @@ -226,7 +226,7 @@ class ExpireCacheSQLite(sqlitedb.SQLiteAppl, ExpireCache): # The key/value tables will be created on demand by self.create_table DDL_CREATE_TABLES = {} - CACHE_TABLE_PREFIX = "CACHE-TABLE-" + CACHE_TABLE_PREFIX = "CACHE-TABLE" def __init__(self, cfg: ExpireCacheCfg): """An instance of the SQLite expire cache is build up from a |