0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-07-02 01:18:25 +02:00

Change regex cache size to 5000

This commit is contained in:
Erik Johnston 2016-01-19 16:07:07 +00:00
parent 5a7d1ecffc
commit fb5d8e58ff

View file

@ -309,7 +309,7 @@ def _flatten_dict(d, prefix=[], result={}):
return result
regex_cache = LruCache(100000)
regex_cache = LruCache(5000)
def _compile_regex(regex_str):