Change regex cache size to 5000

pull/505/head
Erik Johnston 2016-01-19 16:07:07 +00:00
parent 5a7d1ecffc
commit fb5d8e58ff
1 changed files with 1 additions and 1 deletions

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):