Use Static caches for data that will not change if the program is run and stopped again. e.g. typedata, version numbers etc.
An example invocation could be like
def getDSYMPathForUUID(uuid):
# Get the data from cache
cached_data = caching.GetStaticCacheData('dsym.for.uuid', {})
Use Static caches for data that will not change if the program is run and stopped again. e.g. typedata, version numbers etc.
An example invocation could be like
def getDSYMPathForUUID(uuid):
# Get the data from cache
cached_data = caching.GetStaticCacheData('dsym.for.uuid', {})