Laurent-Dx
Results
2
comments of
Laurent-Dx
This was missing from the API doc, I made a PR #801.
The following does reproduce the issue instantly: ```python from threading import Thread from botocore.utils import JSONFileCache cache = JSONFileCache() def f(): for i in range(100000): cache["key"] = 10 cache["key"] threads...