◆ get_cache_value()
def pipeline-python.fiftyone_pipeline_engines.fiftyone_pipeline_engines.basic_dictionary_cache.BasicDictionaryCache.get_cache_value | ( | self, | |
key | |||
) |
Get the result stored in the cache or None @type key : string.
- Parameters
-
- key - : The cache key to lookup @rtype mixed
- Returns
- None or the data stored in the cache
Reimplemented from pipeline-python.fiftyone_pipeline_engines.fiftyone_pipeline_engines.datakeyed_cache.DataKeyedCache.
◆ set_cache_value()
def pipeline-python.fiftyone_pipeline_engines.fiftyone_pipeline_engines.basic_dictionary_cache.BasicDictionaryCache.set_cache_value ( self, key, value ) Add data to the cache under a key @type key : string.
- Parameters
-
- key - : The cache key to store data under @type value : mixed
- key - : The value to save in the cache
Reimplemented from pipeline-python.fiftyone_pipeline_engines.fiftyone_pipeline_engines.datakeyed_cache.DataKeyedCache.