mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-08-06 19:34:14 -04:00
Change regex cache size to 5000
This commit is contained in:
parent
5a7d1ecffc
commit
fb5d8e58ff
1 changed files with 1 additions and 1 deletions
|
@ -309,7 +309,7 @@ def _flatten_dict(d, prefix=[], result={}):
|
||||||
return result
|
return result
|
||||||
|
|
||||||
|
|
||||||
regex_cache = LruCache(100000)
|
regex_cache = LruCache(5000)
|
||||||
|
|
||||||
|
|
||||||
def _compile_regex(regex_str):
|
def _compile_regex(regex_str):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue