diff --git a/__init__.py b/__init__.py index f816d2f..78133ec 100644 --- a/__init__.py +++ b/__init__.py @@ -55,8 +55,6 @@ class property_cache_pickle(object): * **data_version():** returns a version number of the current data (it should be increased, if the get method of the source instance returns improved values or the data structure had been changed). * **get(key, default):** returns the property for a key. If key does not exists, default will be returned. - .. hint:: You are able to use all parameters and methods of the `source_instance` identically with the property_cache instance. - :param source_instance: The source instance holding the data :type source_instance: instance :param cache_filename: File name, where the properties are stored as cache @@ -143,7 +141,7 @@ class property_cache_pickle(object): :param default: value to be returned, if key does not exists. :returns: value for a given key or default value. """ - if key in self.keys() and key not in self._source_get_keys: + if key in self._source_instance.keys() and key not in self._source_get_keys: if self._cached_props is None: self._init_cache() if self._max_age is None: @@ -167,7 +165,7 @@ class property_cache_pickle(object): logger.debug("Providing property for '%s' from cache", key) return self._cached_props[self.DATA_TAG].get(self._key_filter(key), default) else: - if key not in self.keys(): + if key not in self._source_instance.keys(): logger.debug("Key '%s' is not in cached_keys. Uncached data will be returned.", key) elif key in self._source_get_keys: logger.debug("Key '%s' is excluded by .add_source_get_keys(). Uncached data will be returned.", key) @@ -229,8 +227,8 @@ class property_cache_pickle(object): def _load_source(self, sleep_between_keys=0): if self._cached_props is None: self._init_cache() - logger.debug('Loading all data from source - %s', repr(self.keys())) - for key in self.keys(): + logger.debug('Loading all data from source - %s', repr(self._source_instance.keys())) + for key in self._source_instance.keys(): if key not in self._source_get_keys: self._cached_props[self.DATA_TAG][self._key_filter(key)] = self._source_instance.get(key) self._cached_props[self.AGE_TAG][self._key_filter(key)] = int(time.time()) @@ -249,12 +247,6 @@ class property_cache_pickle(object): else: return self._cached_props.get(self.UID_TAG, None) - def __getattribute__(self, name): - try: - return super().__getattribute__(name) - except AttributeError: - return getattr(self._source_instance, name) - class property_cache_json(property_cache_pickle): """ diff --git a/_docs_/_downloads/f5f51665bfc67c10ccc039770b738067/unittest.pdf b/_docs_/_downloads/f5f51665bfc67c10ccc039770b738067/unittest.pdf index ce1d988..d74ec6c 100644 Binary files a/_docs_/_downloads/f5f51665bfc67c10ccc039770b738067/unittest.pdf and b/_docs_/_downloads/f5f51665bfc67c10ccc039770b738067/unittest.pdf differ diff --git a/_docs_/index.html b/_docs_/index.html index 1ca5ec7..2d3afb2 100644 --- a/_docs_/index.html +++ b/_docs_/index.html @@ -238,6 +238,15 @@ self.print_n_sleep("__five__") return 'five' +class test_slow_data_cached(test_slow_data): + def __init__(self, *args, **kwargs) -> None: + super().__init__(*args, **kwargs) + self._cache = caching.property_cache_json(test_slow_data(), 'cache.json') + self._cache.add_source_get_keys(self.KEY_THREE) + + def get(self, key, default=None): + return self._cache.get(key, default) + if __name__ == "__main__": # Logging configuration @@ -248,8 +257,7 @@ ) # Example tm = time.time() - data = caching.property_cache_json(test_slow_data(), 'cache.json') - data.add_source_get_keys(data.KEY_THREE) + data = test_slow_data_cached() print('Testing property_cache (json):\n--------------------------------') for key in data.keys(): print(data.get(key)) @@ -260,30 +268,30 @@

Will result on the first execution to the following output (with a long execution time):

Testing property_cache (json):
 --------------------------------
-2024-09-22 00:02:43,744:    DEBUG - caching - Cache file does not exists (yet).
-2024-09-22 00:02:43,745:    DEBUG - caching - cache-file stored (cache.json)
-2024-09-22 00:02:43,745:    DEBUG - caching - Loading property for key='1' from source instance
+2024-09-22 11:01:08,845:    DEBUG - caching - Cache file does not exists (yet).
+2024-09-22 11:01:08,846:    DEBUG - caching - cache-file stored (cache.json)
+2024-09-22 11:01:08,846:    DEBUG - caching - Loading property for key='1' from source instance
 slow get executed for __1__
-2024-09-22 00:02:46,746:    DEBUG - caching - Adding key=1, value=one with timestamp=1726956166 to chache
-2024-09-22 00:02:46,747:    DEBUG - caching - cache-file stored (cache.json)
+2024-09-22 11:01:11,847:    DEBUG - caching - Adding key=1, value=one with timestamp=1726995671 to chache
+2024-09-22 11:01:11,847:    DEBUG - caching - cache-file stored (cache.json)
 one
-2024-09-22 00:02:46,748:    DEBUG - caching - Loading property for key='2' from source instance
+2024-09-22 11:01:11,848:    DEBUG - caching - Loading property for key='2' from source instance
 slow get executed for __2__
-2024-09-22 00:02:49,749:    DEBUG - caching - Adding key=2, value=two with timestamp=1726956169 to chache
-2024-09-22 00:02:49,750:    DEBUG - caching - cache-file stored (cache.json)
+2024-09-22 11:01:14,849:    DEBUG - caching - Adding key=2, value=two with timestamp=1726995674 to chache
+2024-09-22 11:01:14,850:    DEBUG - caching - cache-file stored (cache.json)
 two
-2024-09-22 00:02:49,751:    DEBUG - caching - Key 'three' is excluded by .add_source_get_keys(). Uncached data will be returned.
+2024-09-22 11:01:14,850:    DEBUG - caching - Key 'three' is excluded by .add_source_get_keys(). Uncached data will be returned.
 slow get executed for __three__
 three
-2024-09-22 00:02:52,752:    DEBUG - caching - Loading property for key='four' from source instance
+2024-09-22 11:01:17,851:    DEBUG - caching - Loading property for key='four' from source instance
 slow get executed for __four__
-2024-09-22 00:02:55,754:    DEBUG - caching - Adding key=four, value=four with timestamp=1726956175 to chache
-2024-09-22 00:02:55,755:    DEBUG - caching - cache-file stored (cache.json)
+2024-09-22 11:01:20,851:    DEBUG - caching - Adding key=four, value=four with timestamp=1726995680 to chache
+2024-09-22 11:01:20,853:    DEBUG - caching - cache-file stored (cache.json)
 four
-2024-09-22 00:02:55,755:    DEBUG - caching - Loading property for key='five' from source instance
+2024-09-22 11:01:20,854:    DEBUG - caching - Loading property for key='five' from source instance
 slow get executed for __five__
-2024-09-22 00:02:58,757:    DEBUG - caching - Adding key=five, value=five with timestamp=1726956178 to chache
-2024-09-22 00:02:58,758:    DEBUG - caching - cache-file stored (cache.json)
+2024-09-22 11:01:23,854:    DEBUG - caching - Adding key=five, value=five with timestamp=1726995683 to chache
+2024-09-22 11:01:23,855:    DEBUG - caching - cache-file stored (cache.json)
 five
 --------------------------------
 The execution time was 15.0s
@@ -292,17 +300,17 @@
 

With every following execution the time cosumption my by much smaller:

Testing property_cache (json):
 --------------------------------
-2024-09-22 00:02:58,825:    DEBUG - caching - Loading properties from cache (cache.json)
-2024-09-22 00:02:58,825:    DEBUG - caching - Providing property for '1' from cache
+2024-09-22 11:01:23,983:    DEBUG - caching - Loading properties from cache (cache.json)
+2024-09-22 11:01:23,984:    DEBUG - caching - Providing property for '1' from cache
 one
-2024-09-22 00:02:58,825:    DEBUG - caching - Providing property for '2' from cache
+2024-09-22 11:01:23,984:    DEBUG - caching - Providing property for '2' from cache
 two
-2024-09-22 00:02:58,825:    DEBUG - caching - Key 'three' is excluded by .add_source_get_keys(). Uncached data will be returned.
+2024-09-22 11:01:23,984:    DEBUG - caching - Key 'three' is excluded by .add_source_get_keys(). Uncached data will be returned.
 slow get executed for __three__
 three
-2024-09-22 00:03:01,827:    DEBUG - caching - Providing property for 'four' from cache
+2024-09-22 11:01:26,984:    DEBUG - caching - Providing property for 'four' from cache
 four
-2024-09-22 00:03:01,827:    DEBUG - caching - Providing property for 'five' from cache
+2024-09-22 11:01:26,985:    DEBUG - caching - Providing property for 'five' from cache
 five
 --------------------------------
 The execution time was 3.0s
@@ -324,10 +332,6 @@ if the conditions for the cache usage are given.

  • get(key, default): returns the property for a key. If key does not exists, default will be returned.

  • -
    -

    Hint

    -

    You are able to use all parameters and methods of the source_instance identically with the property_cache instance.

    -
    Parameters:
      @@ -409,6 +413,15 @@ if the conditions for the cache usage are given.

      self.print_n_sleep("__five__") return 'five' +class test_slow_data_cached(test_slow_data): + def __init__(self, *args, **kwargs) -> None: + super().__init__(*args, **kwargs) + self._cache = caching.property_cache_json(test_slow_data(), 'cache.pickle') + self._cache.add_source_get_keys(self.KEY_THREE) + + def get(self, key, default=None): + return self._cache.get(key, default) + if __name__ == "__main__": # Logging configuration @@ -419,8 +432,7 @@ if the conditions for the cache usage are given.

      ) # Example tm = time.time() - data = caching.property_cache_json(test_slow_data(), 'cache.json') - data.add_source_get_keys(data.KEY_THREE) + data = test_slow_data_cached() print('Testing property_cache (pickle):\n--------------------------------') for key in data.keys(): print(data.get(key)) @@ -430,30 +442,30 @@ if the conditions for the cache usage are given.

      Will result on the first execution to the following output (with a long execution time):

      Testing property_cache (pickle):
       --------------------------------
      -2024-09-22 00:03:01,889:    DEBUG - caching - Cache file does not exists (yet).
      -2024-09-22 00:03:01,890:    DEBUG - caching - cache-file stored (cache.json)
      -2024-09-22 00:03:01,890:    DEBUG - caching - Loading property for key='1' from source instance
      +2024-09-22 11:01:27,126:    DEBUG - caching - Cache file does not exists (yet).
      +2024-09-22 11:01:27,127:    DEBUG - caching - cache-file stored (cache.pickle)
      +2024-09-22 11:01:27,127:    DEBUG - caching - Loading property for key='1' from source instance
       slow get executed for __1__
      -2024-09-22 00:03:04,891:    DEBUG - caching - Adding key=1, value=one with timestamp=1726956184 to chache
      -2024-09-22 00:03:04,891:    DEBUG - caching - cache-file stored (cache.json)
      +2024-09-22 11:01:30,128:    DEBUG - caching - Adding key=1, value=one with timestamp=1726995690 to chache
      +2024-09-22 11:01:30,129:    DEBUG - caching - cache-file stored (cache.pickle)
       one
      -2024-09-22 00:03:04,892:    DEBUG - caching - Loading property for key='2' from source instance
      +2024-09-22 11:01:30,129:    DEBUG - caching - Loading property for key='2' from source instance
       slow get executed for __2__
      -2024-09-22 00:03:07,892:    DEBUG - caching - Adding key=2, value=two with timestamp=1726956187 to chache
      -2024-09-22 00:03:07,893:    DEBUG - caching - cache-file stored (cache.json)
      +2024-09-22 11:01:33,130:    DEBUG - caching - Adding key=2, value=two with timestamp=1726995693 to chache
      +2024-09-22 11:01:33,131:    DEBUG - caching - cache-file stored (cache.pickle)
       two
      -2024-09-22 00:03:07,894:    DEBUG - caching - Key 'three' is excluded by .add_source_get_keys(). Uncached data will be returned.
      +2024-09-22 11:01:33,132:    DEBUG - caching - Key 'three' is excluded by .add_source_get_keys(). Uncached data will be returned.
       slow get executed for __three__
       three
      -2024-09-22 00:03:10,894:    DEBUG - caching - Loading property for key='four' from source instance
      +2024-09-22 11:01:36,133:    DEBUG - caching - Loading property for key='four' from source instance
       slow get executed for __four__
      -2024-09-22 00:03:13,895:    DEBUG - caching - Adding key=four, value=four with timestamp=1726956193 to chache
      -2024-09-22 00:03:13,896:    DEBUG - caching - cache-file stored (cache.json)
      +2024-09-22 11:01:39,134:    DEBUG - caching - Adding key=four, value=four with timestamp=1726995699 to chache
      +2024-09-22 11:01:39,135:    DEBUG - caching - cache-file stored (cache.pickle)
       four
      -2024-09-22 00:03:13,897:    DEBUG - caching - Loading property for key='five' from source instance
      +2024-09-22 11:01:39,136:    DEBUG - caching - Loading property for key='five' from source instance
       slow get executed for __five__
      -2024-09-22 00:03:16,898:    DEBUG - caching - Adding key=five, value=five with timestamp=1726956196 to chache
      -2024-09-22 00:03:16,899:    DEBUG - caching - cache-file stored (cache.json)
      +2024-09-22 11:01:42,136:    DEBUG - caching - Adding key=five, value=five with timestamp=1726995702 to chache
      +2024-09-22 11:01:42,137:    DEBUG - caching - cache-file stored (cache.pickle)
       five
       --------------------------------
       The execution time was 15.0s
      @@ -462,17 +474,17 @@ if the conditions for the cache usage are given.

      With every following execution the time cosumption my by much smaller:

      Testing property_cache (pickle):
       --------------------------------
      -2024-09-22 00:03:16,978:    DEBUG - caching - Loading properties from cache (cache.json)
      -2024-09-22 00:03:16,978:    DEBUG - caching - Providing property for '1' from cache
      +2024-09-22 11:01:42,204:    DEBUG - caching - Loading properties from cache (cache.pickle)
      +2024-09-22 11:01:42,204:    DEBUG - caching - Providing property for '1' from cache
       one
      -2024-09-22 00:03:16,978:    DEBUG - caching - Providing property for '2' from cache
      +2024-09-22 11:01:42,205:    DEBUG - caching - Providing property for '2' from cache
       two
      -2024-09-22 00:03:16,979:    DEBUG - caching - Key 'three' is excluded by .add_source_get_keys(). Uncached data will be returned.
      +2024-09-22 11:01:42,205:    DEBUG - caching - Key 'three' is excluded by .add_source_get_keys(). Uncached data will be returned.
       slow get executed for __three__
       three
      -2024-09-22 00:03:19,980:    DEBUG - caching - Providing property for 'four' from cache
      +2024-09-22 11:01:45,205:    DEBUG - caching - Providing property for 'four' from cache
       four
      -2024-09-22 00:03:19,981:    DEBUG - caching - Providing property for 'five' from cache
      +2024-09-22 11:01:45,206:    DEBUG - caching - Providing property for 'five' from cache
       five
       --------------------------------
       The execution time was 3.0s
      diff --git a/_docs_/searchindex.js b/_docs_/searchindex.js
      index fcc6c3f..c4b2881 100644
      --- a/_docs_/searchindex.js
      +++ b/_docs_/searchindex.js
      @@ -1 +1 @@
      -Search.setIndex({"alltitles": {"Indices and tables": [[0, "indices-and-tables"]], "License for Sphinx": [[4, null], [11, null]], "Licenses for incorporated software": [[4, "licenses-for-incorporated-software"], [11, "licenses-for-incorporated-software"]], "Required properties for the source_instance": [[0, null]], "The MIT License (MIT)": [[3, null], [10, null]], "The cache will be used, if all following conditions are given": [[0, null]], "Welcome to cachings\u2019s documentation!": [[0, null]], "caching (Caching Module)": [[0, "caching-caching-module"]]}, "docnames": ["index", "venv/lib/python3.11/site-packages/MarkupSafe-2.1.5.dist-info/LICENSE", "venv/lib/python3.11/site-packages/alabaster-1.0.0.dist-info/LICENSE", "venv/lib/python3.11/site-packages/imagesize-1.4.1.dist-info/LICENSE", "venv/lib/python3.11/site-packages/sphinx-8.0.2.dist-info/LICENSE", "venv/lib/python3.11/site-packages/sphinx/ext/autosummary/templates/autosummary/base", "venv/lib/python3.11/site-packages/sphinx/ext/autosummary/templates/autosummary/class", "venv/lib/python3.11/site-packages/sphinx/ext/autosummary/templates/autosummary/module", "venv/lib64/python3.11/site-packages/MarkupSafe-2.1.5.dist-info/LICENSE", "venv/lib64/python3.11/site-packages/alabaster-1.0.0.dist-info/LICENSE", "venv/lib64/python3.11/site-packages/imagesize-1.4.1.dist-info/LICENSE", "venv/lib64/python3.11/site-packages/sphinx-8.0.2.dist-info/LICENSE", "venv/lib64/python3.11/site-packages/sphinx/ext/autosummary/templates/autosummary/base", "venv/lib64/python3.11/site-packages/sphinx/ext/autosummary/templates/autosummary/class", "venv/lib64/python3.11/site-packages/sphinx/ext/autosummary/templates/autosummary/module"], "envversion": {"sphinx": 63, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2}, "filenames": ["index.rst", "venv/lib/python3.11/site-packages/MarkupSafe-2.1.5.dist-info/LICENSE.rst", "venv/lib/python3.11/site-packages/alabaster-1.0.0.dist-info/LICENSE.rst", "venv/lib/python3.11/site-packages/imagesize-1.4.1.dist-info/LICENSE.rst", "venv/lib/python3.11/site-packages/sphinx-8.0.2.dist-info/LICENSE.rst", "venv/lib/python3.11/site-packages/sphinx/ext/autosummary/templates/autosummary/base.rst", "venv/lib/python3.11/site-packages/sphinx/ext/autosummary/templates/autosummary/class.rst", "venv/lib/python3.11/site-packages/sphinx/ext/autosummary/templates/autosummary/module.rst", "venv/lib64/python3.11/site-packages/MarkupSafe-2.1.5.dist-info/LICENSE.rst", "venv/lib64/python3.11/site-packages/alabaster-1.0.0.dist-info/LICENSE.rst", "venv/lib64/python3.11/site-packages/imagesize-1.4.1.dist-info/LICENSE.rst", "venv/lib64/python3.11/site-packages/sphinx-8.0.2.dist-info/LICENSE.rst", "venv/lib64/python3.11/site-packages/sphinx/ext/autosummary/templates/autosummary/base.rst", "venv/lib64/python3.11/site-packages/sphinx/ext/autosummary/templates/autosummary/class.rst", "venv/lib64/python3.11/site-packages/sphinx/ext/autosummary/templates/autosummary/module.rst"], "indexentries": {"add_source_get_keys() (caching.property_cache_pickle method)": [[0, "caching.property_cache_pickle.add_source_get_keys", false]], "caching": [[0, "module-caching", false]], "full_update() (caching.property_cache_pickle method)": [[0, "caching.property_cache_pickle.full_update", false]], "get() (caching.property_cache_pickle method)": [[0, "caching.property_cache_pickle.get", false]], "module": [[0, "module-caching", false]], "property_cache_json (class in caching)": [[0, "caching.property_cache_json", false]], "property_cache_pickle (class in caching)": [[0, "caching.property_cache_pickle", false]]}, "objects": {"": [[0, 0, 0, "-", "caching"]], "caching": [[0, 1, 1, "", "property_cache_json"], [0, 1, 1, "", "property_cache_pickle"]], "caching.property_cache_pickle": [[0, 2, 1, "", "add_source_get_keys"], [0, 2, 1, "", "full_update"], [0, 2, 1, "", "get"]]}, "objnames": {"0": ["py", "module", "Python module"], "1": ["py", "class", "Python class"], "2": ["py", "method", "Python method"]}, "objtypes": {"0": "py:module", "1": "py:class", "2": "py:method"}, "terms": {"0": 0, "00": 0, "01": 0, "02": 0, "03": 0, "04": 0, "07": 0, "09": 0, "1": 0, "10": 0, "13": 0, "15": 0, "16": 0, "1726956166": 0, "1726956169": 0, "1726956175": 0, "1726956178": 0, "1726956184": 0, "1726956187": 0, "1726956193": 0, "1726956196": 0, "19": 0, "1f": 0, "2": 0, "2007": [4, 11], "2008": [4, 11], "2010": [1, 2, 8, 9], "2011": [2, 9], "2016": [3, 10], "2020": [2, 9], "2024": [0, 4, 11], "22": 0, "3": 0, "43": 0, "46": 0, "49": 0, "52": 0, "55": 0, "58": 0, "744": 0, "745": 0, "746": 0, "747": 0, "748": 0, "749": 0, "750": 0, "751": 0, "752": 0, "754": 0, "755": 0, "757": 0, "758": 0, "8": 0, "825": 0, "827": 0, "889": 0, "890": 0, "891": 0, "892": 0, "893": 0, "894": 0, "895": 0, "896": 0, "897": 0, "898": 0, "899": 0, "978": 0, "979": 0, "980": 0, "981": 0, "A": [1, 2, 3, 4, 8, 9, 10, 11], "AND": [1, 2, 3, 4, 8, 9, 10, 11], "AS": [1, 2, 3, 4, 8, 9, 10, 11], "BE": [1, 2, 3, 4, 8, 9, 10, 11], "BUT": [1, 2, 3, 4, 8, 9, 10, 11], "BY": [1, 2, 4, 8, 9, 11], "FOR": [1, 2, 3, 4, 8, 9, 10, 11], "IF": [1, 2, 4, 8, 9, 11], "IN": [1, 2, 3, 4, 8, 9, 10, 11], "If": 0, "It": 0, "NO": [1, 2, 3, 4, 8, 9, 10, 11], "NOT": [1, 2, 3, 4, 8, 9, 10, 11], "OF": [1, 2, 3, 4, 8, 9, 10, 11], "ON": [1, 2, 4, 8, 9, 11], "OR": [1, 2, 3, 4, 8, 9, 10, 11], "SUCH": [1, 2, 4, 8, 9, 11], "THE": [1, 2, 3, 4, 8, 9, 10, 11], "TO": [1, 2, 3, 4, 8, 9, 10, 11], "The": [2, 4, 9, 11], "WITH": [3, 10], "Will": 0, "With": 0, "__": 0, "__1__": 0, "__2__": 0, "__five__": 0, "__four__": 0, "__main__": 0, "__name__": 0, "__three__": 0, "_parse_numpydoc_see_also_sect": [4, 11], "abl": 0, "abov": [1, 2, 3, 4, 8, 9, 10, 11], "action": [3, 10], "ad": 0, "add": 0, "add_source_get_kei": 0, "advis": [1, 2, 4, 8, 9, 11], "ag": 0, "alder": 0, "all": [3, 4, 10, 11], "also": 0, "alwai": 0, "an": [3, 10], "ani": [1, 2, 3, 4, 8, 9, 10, 11], "ar": [1, 2, 4, 8, 9, 11], "argument": 0, "aris": [1, 2, 3, 4, 8, 9, 10, 11], "armin": [2, 9], "asctim": 0, "associ": [3, 10], "attributeerror": 0, "author": [0, 3, 4, 10, 11], "avail": 0, "base": [2, 9], "basicconfig": 0, "been": 0, "below": [4, 11], "between": 0, "bin": 0, "binari": [1, 2, 4, 8, 9, 11], "block": [7, 14], "bool": 0, "bsd": [4, 11], "busi": [1, 2, 4, 8, 9, 11], "c": [2, 4, 9, 11], "cache_filenam": 0, "callback": 0, "callback_on_data_storag": 0, "caus": [1, 2, 4, 8, 9, 11], "chach": 0, "chang": 0, "charg": [3, 10], "checksum": 0, "claim": [3, 10], "class": 0, "claus": [4, 11], "code": [0, 1, 2, 4, 8, 9, 11], "complet": 0, "condit": [1, 2, 3, 4, 8, 9, 10, 11], "configur": 0, "connect": [3, 10], "consequenti": [1, 2, 4, 8, 9, 11], "contract": [1, 2, 3, 4, 8, 9, 10, 11], "contributor": [1, 2, 4, 8, 9, 11], "copi": [3, 10], "copyright": [1, 2, 3, 4, 8, 9, 10, 11], "cosumpt": 0, "current": 0, "damag": [1, 2, 3, 4, 8, 9, 10, 11], "data": [0, 1, 2, 4, 8, 9, 11], "data_vers": 0, "de": 0, "deal": [3, 10], "debug": 0, "def": 0, "default": 0, "der": [4, 11], "deriv": [1, 2, 4, 8, 9, 11], "descript": 0, "detail": 0, "direct": [1, 2, 4, 8, 9, 11], "dirk": 0, "disclaim": [1, 2, 4, 8, 9, 11], "distribut": [1, 2, 3, 4, 8, 9, 10, 11], "do": [3, 10], "document": [1, 2, 3, 4, 8, 9, 10, 11], "doe": 0, "don": 0, "e": 0, "each": 0, "els": 0, "endblock": [7, 14], "endfor": [7, 14], "endif": [7, 14], "endors": [1, 2, 8, 9], "env": 0, "escap": [5, 6, 7, 12, 13, 14], "even": [1, 2, 4, 8, 9, 11], "event": [1, 2, 3, 4, 8, 9, 10, 11], "everi": 0, "exampl": 0, "except": 0, "exclud": 0, "execut": 0, "exemplari": [1, 2, 4, 8, 9, 11], "exist": 0, "express": [1, 2, 3, 4, 8, 9, 10, 11], "f": 0, "fals": 0, "fi": [4, 11], "file": [0, 3, 4, 10, 11], "first": 0, "fit": [1, 2, 3, 4, 8, 9, 10, 11], "five": 0, "float": 0, "follow": [1, 2, 3, 4, 8, 9, 10, 11], "forcier": [2, 9], "form": [1, 2, 4, 8, 9, 11], "format": 0, "four": 0, "free": [3, 10], "from": [0, 1, 2, 3, 4, 8, 9, 10, 11], "full_upd": 0, "fullnam": [5, 6, 7, 12, 13, 14], "function": 0, "furnish": [3, 10], "g": 0, "gener": 0, "get": 0, "getattr": 0, "good": [1, 2, 4, 8, 9, 11], "grant": [3, 10], "had": 0, "herebi": [3, 10], "hold": 0, "holder": [1, 2, 3, 4, 8, 9, 10, 11], "howev": [1, 2, 4, 8, 9, 11], "i": [0, 1, 2, 3, 4, 8, 9, 10, 11], "id": 0, "ident": 0, "iki": [4, 11], "implement": [4, 11], "impli": [1, 2, 3, 4, 8, 9, 10, 11], "import": 0, "improv": 0, "incident": [1, 2, 4, 8, 9, 11], "includ": [1, 2, 3, 4, 8, 9, 10, 11], "increas": 0, "index": 0, "indic": [4, 11], "indirect": [1, 2, 4, 8, 9, 11], "inform": 0, "initialis": 0, "initiallis": 0, "instanc": 0, "instead": 0, "int": 0, "interrupt": [1, 2, 4, 8, 9, 11], "item": [7, 14], "its": [1, 8], "jeff": [2, 9], "json": 0, "k": 0, "kei": 0, "kenneth": [2, 9], "key_fiv": 0, "key_four": 0, "key_on": 0, "key_thre": 0, "key_two": 0, "kind": [3, 10], "less": 0, "level": 0, "levelnam": 0, "liabil": [1, 2, 3, 4, 8, 9, 10, 11], "liabl": [1, 2, 3, 4, 8, 9, 10, 11], "licenc": [4, 11], "limit": [0, 1, 2, 3, 4, 8, 9, 10, 11], "list": [0, 1, 2, 4, 8, 9, 11], "load": 0, "load_all_on_init": 0, "log": 0, "long": 0, "loss": [1, 2, 4, 8, 9, 11], "mai": [1, 2, 8, 9], "materi": [1, 2, 4, 8, 9, 11], "max_ag": 0, "maximum": 0, "mentat": [4, 11], "merchant": [1, 2, 3, 4, 8, 9, 10, 11], "merg": [3, 10], "messag": 0, "met": [1, 2, 4, 8, 9, 11], "method": 0, "mockeri": 0, "modif": [1, 2, 4, 8, 9, 11], "modifi": [3, 10], "modul": [7, 14], "more": 0, "mount": 0, "much": 0, "must": [1, 2, 4, 8, 9, 11], "my": 0, "n": 0, "name": [0, 1, 2, 8, 9], "need": 0, "neglig": [1, 2, 4, 8, 9, 11], "neither": [1, 8], "net": [4, 11], "none": 0, "noninfring": [3, 10], "nor": [1, 8], "notic": [1, 2, 3, 4, 8, 9, 10, 11], "nthe": 0, "number": 0, "numpydocstr": [4, 11], "object": 0, "obtain": [3, 10], "one": 0, "onli": 0, "origin": [2, 9], "other": [0, 1, 2, 3, 4, 8, 9, 10, 11], "otherwis": [1, 2, 3, 4, 8, 9, 10, 11], "out": [1, 2, 3, 4, 8, 9, 10, 11], "output": 0, "owner": [2, 9], "page": 0, "pallet": [1, 8], "paramet": 0, "parent": 0, "particular": [1, 2, 3, 4, 8, 9, 10, 11], "pauli": [4, 11], "pav": [4, 11], "permiss": [1, 2, 3, 8, 9, 10], "permit": [1, 2, 3, 4, 8, 9, 10, 11], "person": [3, 10], "pickl": 0, "portion": [3, 10], "possibl": [1, 2, 4, 8, 9, 11], "prevent": 0, "previou": 0, "print": 0, "print_n_sleep": 0, "prior": [1, 2, 8, 9], "procur": [1, 2, 4, 8, 9, 11], "product": [1, 2, 8, 9], "profit": [1, 2, 4, 8, 9, 11], "project": [4, 11], "promot": [1, 2, 8, 9], "property_cach": 0, "property_cache_json": 0, "property_cache_pickl": 0, "provid": [0, 1, 2, 3, 4, 8, 9, 10, 11], "publish": [3, 10], "purpos": [1, 2, 3, 4, 8, 9, 10, 11], "python": 0, "read": 0, "redistribut": [1, 2, 4, 8, 9, 11], "reitz": [2, 9], "reproduc": [1, 2, 4, 8, 9, 11], "reserv": [2, 4, 9, 11], "restrict": [3, 10], "result": 0, "retain": [1, 2, 4, 8, 9, 11], "return": 0, "right": [2, 3, 4, 9, 10, 11], "ronach": [2, 9], "rubric": [7, 14], "search": 0, "second": 0, "see": [0, 4, 11], "self": 0, "sell": [3, 10], "servic": [1, 2, 4, 8, 9, 11], "shall": [1, 2, 3, 4, 8, 9, 10, 11], "shibukawa": [3, 10], "should": 0, "sleep": 0, "sleep_between_kei": 0, "slow": 0, "smaller": 0, "so": [3, 10], "softwar": [1, 2, 3, 8, 9, 10], "some": [2, 9], "somewher": 0, "sourc": [0, 1, 2, 4, 8, 9, 11], "special": [1, 2, 4, 8, 9, 11], "specif": [1, 2, 8, 9], "stdout": 0, "stefan": [4, 11], "storag": 0, "store": 0, "store_on_get": 0, "str": 0, "stream": 0, "strict": [1, 2, 4, 8, 9, 11], "string": 0, "structur": 0, "subject": [3, 10], "sublicens": [3, 10], "submodul": 0, "substanti": [3, 10], "substitut": [1, 2, 4, 8, 9, 11], "sudo": 0, "support": 0, "sy": 0, "t": 0, "take": 0, "team": [4, 11], "test": 0, "test_slow_data": 0, "theme": [2, 9], "theori": [1, 2, 4, 8, 9, 11], "thi": [0, 1, 2, 3, 4, 8, 9, 10, 11], "three": 0, "time": 0, "timestamp": 0, "tm": 0, "tort": [1, 2, 3, 4, 8, 9, 10, 11], "transfer": 0, "true": 0, "try": 0, "tupl": 0, "two": [0, 4, 11], "type": 0, "uid": 0, "uncach": 0, "under": [4, 11], "underlin": [5, 6, 7, 12, 13, 14], "unicod": 0, "uniqu": 0, "unittest": 0, "unless": [4, 11], "us": [1, 2, 3, 4, 8, 9, 10, 11], "usag": 0, "usr": 0, "utf": 0, "valu": 0, "van": [4, 11], "version": 0, "virtanen": [4, 11], "wa": [0, 4, 11], "wai": [1, 2, 4, 8, 9, 11], "walt": [4, 11], "want": 0, "warranti": [1, 2, 3, 4, 8, 9, 10, 11], "when": 0, "where": 0, "whether": [1, 2, 3, 4, 8, 9, 10, 11], "which": 0, "whom": [3, 10], "without": [1, 2, 3, 4, 8, 9, 10, 11], "work": [2, 9], "write": 0, "written": [1, 2, 8, 9], "yet": 0, "yoshiki": [3, 10], "you": 0, "za": [4, 11]}, "titles": ["Welcome to cachings\u2019s documentation!", "<no title>", "<no title>", "The MIT License (MIT)", "License for Sphinx", "<no title>", "<no title>", "<no title>", "<no title>", "<no title>", "The MIT License (MIT)", "License for Sphinx", "<no title>", "<no title>", "<no title>"], "titleterms": {"": 0, "The": [0, 3, 10], "all": 0, "ar": 0, "cach": 0, "condit": 0, "document": 0, "follow": 0, "given": 0, "incorpor": [4, 11], "indic": 0, "licens": [3, 4, 10, 11], "mit": [3, 10], "modul": 0, "properti": 0, "requir": 0, "softwar": [4, 11], "source_inst": 0, "sphinx": [4, 11], "tabl": 0, "us": 0, "welcom": 0}})
      \ No newline at end of file
      +Search.setIndex({"alltitles": {"Indices and tables": [[0, "indices-and-tables"]], "License for Sphinx": [[4, null], [11, null]], "Licenses for incorporated software": [[4, "licenses-for-incorporated-software"], [11, "licenses-for-incorporated-software"]], "Required properties for the source_instance": [[0, null]], "The MIT License (MIT)": [[3, null], [10, null]], "The cache will be used, if all following conditions are given": [[0, null]], "Welcome to cachings\u2019s documentation!": [[0, null]], "caching (Caching Module)": [[0, "caching-caching-module"]]}, "docnames": ["index", "venv/lib/python3.11/site-packages/MarkupSafe-2.1.5.dist-info/LICENSE", "venv/lib/python3.11/site-packages/alabaster-1.0.0.dist-info/LICENSE", "venv/lib/python3.11/site-packages/imagesize-1.4.1.dist-info/LICENSE", "venv/lib/python3.11/site-packages/sphinx-8.0.2.dist-info/LICENSE", "venv/lib/python3.11/site-packages/sphinx/ext/autosummary/templates/autosummary/base", "venv/lib/python3.11/site-packages/sphinx/ext/autosummary/templates/autosummary/class", "venv/lib/python3.11/site-packages/sphinx/ext/autosummary/templates/autosummary/module", "venv/lib64/python3.11/site-packages/MarkupSafe-2.1.5.dist-info/LICENSE", "venv/lib64/python3.11/site-packages/alabaster-1.0.0.dist-info/LICENSE", "venv/lib64/python3.11/site-packages/imagesize-1.4.1.dist-info/LICENSE", "venv/lib64/python3.11/site-packages/sphinx-8.0.2.dist-info/LICENSE", "venv/lib64/python3.11/site-packages/sphinx/ext/autosummary/templates/autosummary/base", "venv/lib64/python3.11/site-packages/sphinx/ext/autosummary/templates/autosummary/class", "venv/lib64/python3.11/site-packages/sphinx/ext/autosummary/templates/autosummary/module"], "envversion": {"sphinx": 63, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2}, "filenames": ["index.rst", "venv/lib/python3.11/site-packages/MarkupSafe-2.1.5.dist-info/LICENSE.rst", "venv/lib/python3.11/site-packages/alabaster-1.0.0.dist-info/LICENSE.rst", "venv/lib/python3.11/site-packages/imagesize-1.4.1.dist-info/LICENSE.rst", "venv/lib/python3.11/site-packages/sphinx-8.0.2.dist-info/LICENSE.rst", "venv/lib/python3.11/site-packages/sphinx/ext/autosummary/templates/autosummary/base.rst", "venv/lib/python3.11/site-packages/sphinx/ext/autosummary/templates/autosummary/class.rst", "venv/lib/python3.11/site-packages/sphinx/ext/autosummary/templates/autosummary/module.rst", "venv/lib64/python3.11/site-packages/MarkupSafe-2.1.5.dist-info/LICENSE.rst", "venv/lib64/python3.11/site-packages/alabaster-1.0.0.dist-info/LICENSE.rst", "venv/lib64/python3.11/site-packages/imagesize-1.4.1.dist-info/LICENSE.rst", "venv/lib64/python3.11/site-packages/sphinx-8.0.2.dist-info/LICENSE.rst", "venv/lib64/python3.11/site-packages/sphinx/ext/autosummary/templates/autosummary/base.rst", "venv/lib64/python3.11/site-packages/sphinx/ext/autosummary/templates/autosummary/class.rst", "venv/lib64/python3.11/site-packages/sphinx/ext/autosummary/templates/autosummary/module.rst"], "indexentries": {"add_source_get_keys() (caching.property_cache_pickle method)": [[0, "caching.property_cache_pickle.add_source_get_keys", false]], "caching": [[0, "module-caching", false]], "full_update() (caching.property_cache_pickle method)": [[0, "caching.property_cache_pickle.full_update", false]], "get() (caching.property_cache_pickle method)": [[0, "caching.property_cache_pickle.get", false]], "module": [[0, "module-caching", false]], "property_cache_json (class in caching)": [[0, "caching.property_cache_json", false]], "property_cache_pickle (class in caching)": [[0, "caching.property_cache_pickle", false]]}, "objects": {"": [[0, 0, 0, "-", "caching"]], "caching": [[0, 1, 1, "", "property_cache_json"], [0, 1, 1, "", "property_cache_pickle"]], "caching.property_cache_pickle": [[0, 2, 1, "", "add_source_get_keys"], [0, 2, 1, "", "full_update"], [0, 2, 1, "", "get"]]}, "objnames": {"0": ["py", "module", "Python module"], "1": ["py", "class", "Python class"], "2": ["py", "method", "Python method"]}, "objtypes": {"0": "py:module", "1": "py:class", "2": "py:method"}, "terms": {"0": 0, "01": 0, "08": 0, "09": 0, "1": 0, "11": 0, "126": 0, "127": 0, "128": 0, "129": 0, "130": 0, "131": 0, "132": 0, "133": 0, "134": 0, "135": 0, "136": 0, "137": 0, "14": 0, "15": 0, "17": 0, "1726995671": 0, "1726995674": 0, "1726995680": 0, "1726995683": 0, "1726995690": 0, "1726995693": 0, "1726995699": 0, "1726995702": 0, "1f": 0, "2": 0, "20": 0, "2007": [4, 11], "2008": [4, 11], "2010": [1, 2, 8, 9], "2011": [2, 9], "2016": [3, 10], "2020": [2, 9], "2024": [0, 4, 11], "204": 0, "205": 0, "206": 0, "22": 0, "23": 0, "26": 0, "27": 0, "3": 0, "30": 0, "33": 0, "36": 0, "39": 0, "42": 0, "45": 0, "8": 0, "845": 0, "846": 0, "847": 0, "848": 0, "849": 0, "850": 0, "851": 0, "853": 0, "854": 0, "855": 0, "983": 0, "984": 0, "985": 0, "A": [1, 2, 3, 4, 8, 9, 10, 11], "AND": [1, 2, 3, 4, 8, 9, 10, 11], "AS": [1, 2, 3, 4, 8, 9, 10, 11], "BE": [1, 2, 3, 4, 8, 9, 10, 11], "BUT": [1, 2, 3, 4, 8, 9, 10, 11], "BY": [1, 2, 4, 8, 9, 11], "FOR": [1, 2, 3, 4, 8, 9, 10, 11], "IF": [1, 2, 4, 8, 9, 11], "IN": [1, 2, 3, 4, 8, 9, 10, 11], "If": 0, "It": 0, "NO": [1, 2, 3, 4, 8, 9, 10, 11], "NOT": [1, 2, 3, 4, 8, 9, 10, 11], "OF": [1, 2, 3, 4, 8, 9, 10, 11], "ON": [1, 2, 4, 8, 9, 11], "OR": [1, 2, 3, 4, 8, 9, 10, 11], "SUCH": [1, 2, 4, 8, 9, 11], "THE": [1, 2, 3, 4, 8, 9, 10, 11], "TO": [1, 2, 3, 4, 8, 9, 10, 11], "The": [2, 4, 9, 11], "WITH": [3, 10], "Will": 0, "With": 0, "__": 0, "__1__": 0, "__2__": 0, "__five__": 0, "__four__": 0, "__init__": 0, "__main__": 0, "__name__": 0, "__three__": 0, "_cach": 0, "_parse_numpydoc_see_also_sect": [4, 11], "abov": [1, 2, 3, 4, 8, 9, 10, 11], "action": [3, 10], "ad": 0, "add": 0, "add_source_get_kei": 0, "advis": [1, 2, 4, 8, 9, 11], "ag": 0, "alder": 0, "all": [3, 4, 10, 11], "also": 0, "alwai": 0, "an": [3, 10], "ani": [1, 2, 3, 4, 8, 9, 10, 11], "ar": [1, 2, 4, 8, 9, 11], "arg": 0, "argument": 0, "aris": [1, 2, 3, 4, 8, 9, 10, 11], "armin": [2, 9], "asctim": 0, "associ": [3, 10], "attributeerror": 0, "author": [0, 3, 4, 10, 11], "avail": 0, "base": [2, 9], "basicconfig": 0, "been": 0, "below": [4, 11], "between": 0, "bin": 0, "binari": [1, 2, 4, 8, 9, 11], "block": [7, 14], "bool": 0, "bsd": [4, 11], "busi": [1, 2, 4, 8, 9, 11], "c": [2, 4, 9, 11], "cache_filenam": 0, "callback": 0, "callback_on_data_storag": 0, "caus": [1, 2, 4, 8, 9, 11], "chach": 0, "chang": 0, "charg": [3, 10], "checksum": 0, "claim": [3, 10], "class": 0, "claus": [4, 11], "code": [0, 1, 2, 4, 8, 9, 11], "complet": 0, "condit": [1, 2, 3, 4, 8, 9, 10, 11], "configur": 0, "connect": [3, 10], "consequenti": [1, 2, 4, 8, 9, 11], "contract": [1, 2, 3, 4, 8, 9, 10, 11], "contributor": [1, 2, 4, 8, 9, 11], "copi": [3, 10], "copyright": [1, 2, 3, 4, 8, 9, 10, 11], "cosumpt": 0, "current": 0, "damag": [1, 2, 3, 4, 8, 9, 10, 11], "data": [0, 1, 2, 4, 8, 9, 11], "data_vers": 0, "de": 0, "deal": [3, 10], "debug": 0, "def": 0, "default": 0, "der": [4, 11], "deriv": [1, 2, 4, 8, 9, 11], "descript": 0, "detail": 0, "direct": [1, 2, 4, 8, 9, 11], "dirk": 0, "disclaim": [1, 2, 4, 8, 9, 11], "distribut": [1, 2, 3, 4, 8, 9, 10, 11], "do": [3, 10], "document": [1, 2, 3, 4, 8, 9, 10, 11], "doe": 0, "don": 0, "e": 0, "each": 0, "els": 0, "endblock": [7, 14], "endfor": [7, 14], "endif": [7, 14], "endors": [1, 2, 8, 9], "env": 0, "escap": [5, 6, 7, 12, 13, 14], "even": [1, 2, 4, 8, 9, 11], "event": [1, 2, 3, 4, 8, 9, 10, 11], "everi": 0, "exampl": 0, "except": 0, "exclud": 0, "execut": 0, "exemplari": [1, 2, 4, 8, 9, 11], "exist": 0, "express": [1, 2, 3, 4, 8, 9, 10, 11], "f": 0, "fals": 0, "fi": [4, 11], "file": [0, 3, 4, 10, 11], "first": 0, "fit": [1, 2, 3, 4, 8, 9, 10, 11], "five": 0, "float": 0, "follow": [1, 2, 3, 4, 8, 9, 10, 11], "forcier": [2, 9], "form": [1, 2, 4, 8, 9, 11], "format": 0, "four": 0, "free": [3, 10], "from": [0, 1, 2, 3, 4, 8, 9, 10, 11], "full_upd": 0, "fullnam": [5, 6, 7, 12, 13, 14], "function": 0, "furnish": [3, 10], "g": 0, "gener": 0, "get": 0, "getattr": 0, "good": [1, 2, 4, 8, 9, 11], "grant": [3, 10], "had": 0, "herebi": [3, 10], "hold": 0, "holder": [1, 2, 3, 4, 8, 9, 10, 11], "howev": [1, 2, 4, 8, 9, 11], "i": [0, 1, 2, 3, 4, 8, 9, 10, 11], "id": 0, "ident": 0, "iki": [4, 11], "implement": [4, 11], "impli": [1, 2, 3, 4, 8, 9, 10, 11], "import": 0, "improv": 0, "incident": [1, 2, 4, 8, 9, 11], "includ": [1, 2, 3, 4, 8, 9, 10, 11], "increas": 0, "index": 0, "indic": [4, 11], "indirect": [1, 2, 4, 8, 9, 11], "inform": 0, "initialis": 0, "initiallis": 0, "instanc": 0, "instead": 0, "int": 0, "interrupt": [1, 2, 4, 8, 9, 11], "item": [7, 14], "its": [1, 8], "jeff": [2, 9], "json": 0, "k": 0, "kei": 0, "kenneth": [2, 9], "key_fiv": 0, "key_four": 0, "key_on": 0, "key_thre": 0, "key_two": 0, "kind": [3, 10], "kwarg": 0, "less": 0, "level": 0, "levelnam": 0, "liabil": [1, 2, 3, 4, 8, 9, 10, 11], "liabl": [1, 2, 3, 4, 8, 9, 10, 11], "licenc": [4, 11], "limit": [0, 1, 2, 3, 4, 8, 9, 10, 11], "list": [0, 1, 2, 4, 8, 9, 11], "load": 0, "load_all_on_init": 0, "log": 0, "long": 0, "loss": [1, 2, 4, 8, 9, 11], "mai": [1, 2, 8, 9], "materi": [1, 2, 4, 8, 9, 11], "max_ag": 0, "maximum": 0, "mentat": [4, 11], "merchant": [1, 2, 3, 4, 8, 9, 10, 11], "merg": [3, 10], "messag": 0, "met": [1, 2, 4, 8, 9, 11], "method": 0, "mockeri": 0, "modif": [1, 2, 4, 8, 9, 11], "modifi": [3, 10], "modul": [7, 14], "more": 0, "mount": 0, "much": 0, "must": [1, 2, 4, 8, 9, 11], "my": 0, "n": 0, "name": [0, 1, 2, 8, 9], "need": 0, "neglig": [1, 2, 4, 8, 9, 11], "neither": [1, 8], "net": [4, 11], "none": 0, "noninfring": [3, 10], "nor": [1, 8], "notic": [1, 2, 3, 4, 8, 9, 10, 11], "nthe": 0, "number": 0, "numpydocstr": [4, 11], "object": 0, "obtain": [3, 10], "one": 0, "onli": 0, "origin": [2, 9], "other": [0, 1, 2, 3, 4, 8, 9, 10, 11], "otherwis": [1, 2, 3, 4, 8, 9, 10, 11], "out": [1, 2, 3, 4, 8, 9, 10, 11], "output": 0, "owner": [2, 9], "page": 0, "pallet": [1, 8], "paramet": 0, "parent": 0, "particular": [1, 2, 3, 4, 8, 9, 10, 11], "pauli": [4, 11], "pav": [4, 11], "permiss": [1, 2, 3, 8, 9, 10], "permit": [1, 2, 3, 4, 8, 9, 10, 11], "person": [3, 10], "pickl": 0, "portion": [3, 10], "possibl": [1, 2, 4, 8, 9, 11], "prevent": 0, "previou": 0, "print": 0, "print_n_sleep": 0, "prior": [1, 2, 8, 9], "procur": [1, 2, 4, 8, 9, 11], "product": [1, 2, 8, 9], "profit": [1, 2, 4, 8, 9, 11], "project": [4, 11], "promot": [1, 2, 8, 9], "property_cach": 0, "property_cache_json": 0, "property_cache_pickl": 0, "provid": [0, 1, 2, 3, 4, 8, 9, 10, 11], "publish": [3, 10], "purpos": [1, 2, 3, 4, 8, 9, 10, 11], "python": 0, "read": 0, "redistribut": [1, 2, 4, 8, 9, 11], "reitz": [2, 9], "reproduc": [1, 2, 4, 8, 9, 11], "reserv": [2, 4, 9, 11], "restrict": [3, 10], "result": 0, "retain": [1, 2, 4, 8, 9, 11], "return": 0, "right": [2, 3, 4, 9, 10, 11], "ronach": [2, 9], "rubric": [7, 14], "search": 0, "second": 0, "see": [0, 4, 11], "self": 0, "sell": [3, 10], "servic": [1, 2, 4, 8, 9, 11], "shall": [1, 2, 3, 4, 8, 9, 10, 11], "shibukawa": [3, 10], "should": 0, "sleep": 0, "sleep_between_kei": 0, "slow": 0, "smaller": 0, "so": [3, 10], "softwar": [1, 2, 3, 8, 9, 10], "some": [2, 9], "somewher": 0, "sourc": [0, 1, 2, 4, 8, 9, 11], "special": [1, 2, 4, 8, 9, 11], "specif": [1, 2, 8, 9], "stdout": 0, "stefan": [4, 11], "storag": 0, "store": 0, "store_on_get": 0, "str": 0, "stream": 0, "strict": [1, 2, 4, 8, 9, 11], "string": 0, "structur": 0, "subject": [3, 10], "sublicens": [3, 10], "submodul": 0, "substanti": [3, 10], "substitut": [1, 2, 4, 8, 9, 11], "sudo": 0, "super": 0, "support": 0, "sy": 0, "t": 0, "take": 0, "team": [4, 11], "test": 0, "test_slow_data": 0, "test_slow_data_cach": 0, "theme": [2, 9], "theori": [1, 2, 4, 8, 9, 11], "thi": [0, 1, 2, 3, 4, 8, 9, 10, 11], "three": 0, "time": 0, "timestamp": 0, "tm": 0, "tort": [1, 2, 3, 4, 8, 9, 10, 11], "transfer": 0, "true": 0, "try": 0, "tupl": 0, "two": [0, 4, 11], "type": 0, "uid": 0, "uncach": 0, "under": [4, 11], "underlin": [5, 6, 7, 12, 13, 14], "unicod": 0, "uniqu": 0, "unittest": 0, "unless": [4, 11], "us": [1, 2, 3, 4, 8, 9, 10, 11], "usag": 0, "usr": 0, "utf": 0, "valu": 0, "van": [4, 11], "version": 0, "virtanen": [4, 11], "wa": [0, 4, 11], "wai": [1, 2, 4, 8, 9, 11], "walt": [4, 11], "want": 0, "warranti": [1, 2, 3, 4, 8, 9, 10, 11], "when": 0, "where": 0, "whether": [1, 2, 3, 4, 8, 9, 10, 11], "which": 0, "whom": [3, 10], "without": [1, 2, 3, 4, 8, 9, 10, 11], "work": [2, 9], "write": 0, "written": [1, 2, 8, 9], "yet": 0, "yoshiki": [3, 10], "you": 0, "za": [4, 11]}, "titles": ["Welcome to cachings\u2019s documentation!", "<no title>", "<no title>", "The MIT License (MIT)", "License for Sphinx", "<no title>", "<no title>", "<no title>", "<no title>", "<no title>", "The MIT License (MIT)", "License for Sphinx", "<no title>", "<no title>", "<no title>"], "titleterms": {"": 0, "The": [0, 3, 10], "all": 0, "ar": 0, "cach": 0, "condit": 0, "document": 0, "follow": 0, "given": 0, "incorpor": [4, 11], "indic": 0, "licens": [3, 4, 10, 11], "mit": [3, 10], "modul": 0, "properti": 0, "requir": 0, "softwar": [4, 11], "source_inst": 0, "sphinx": [4, 11], "tabl": 0, "us": 0, "welcom": 0}})
      \ No newline at end of file
      diff --git a/_examples_/property_cache_json.py b/_examples_/property_cache_json.py
      index db25d2b..536532f 100644
      --- a/_examples_/property_cache_json.py
      +++ b/_examples_/property_cache_json.py
      @@ -55,6 +55,15 @@ class test_slow_data(object):
               self.print_n_sleep("__five__")
               return 'five'
       
      +class test_slow_data_cached(test_slow_data):
      +    def __init__(self, *args, **kwargs) -> None:
      +        super().__init__(*args, **kwargs)
      +        self._cache = caching.property_cache_json(test_slow_data(), 'cache.json')
      +        self._cache.add_source_get_keys(self.KEY_THREE)
      +
      +    def get(self, key, default=None):
      +        return self._cache.get(key, default)
      +
       
       if __name__ == "__main__":
           # Logging configuration
      @@ -65,8 +74,7 @@ if __name__ == "__main__":
           )
           # Example
           tm = time.time()
      -    data = caching.property_cache_json(test_slow_data(), 'cache.json')
      -    data.add_source_get_keys(data.KEY_THREE)
      +    data = test_slow_data_cached()
           print('Testing property_cache (json):\n--------------------------------')
           for key in data.keys():
               print(data.get(key))
      diff --git a/_examples_/property_cache_pickle.py b/_examples_/property_cache_pickle.py
      index 0057a34..e07a7bb 100644
      --- a/_examples_/property_cache_pickle.py
      +++ b/_examples_/property_cache_pickle.py
      @@ -55,6 +55,15 @@ class test_slow_data(object):
               self.print_n_sleep("__five__")
               return 'five'
       
      +class test_slow_data_cached(test_slow_data):
      +    def __init__(self, *args, **kwargs) -> None:
      +        super().__init__(*args, **kwargs)
      +        self._cache = caching.property_cache_json(test_slow_data(), 'cache.pickle')
      +        self._cache.add_source_get_keys(self.KEY_THREE)
      +
      +    def get(self, key, default=None):
      +        return self._cache.get(key, default)
      +
       
       if __name__ == "__main__":
           # Logging configuration
      @@ -65,8 +74,7 @@ if __name__ == "__main__":
           )
           # Example
           tm = time.time()
      -    data = caching.property_cache_json(test_slow_data(), 'cache.json')
      -    data.add_source_get_keys(data.KEY_THREE)
      +    data = test_slow_data_cached()
           print('Testing property_cache (pickle):\n--------------------------------')
           for key in data.keys():
               print(data.get(key))
      diff --git a/_testresults_/unittest.json b/_testresults_/unittest.json
      index 6d24d14..585b7cd 100644
      --- a/_testresults_/unittest.json
      +++ b/_testresults_/unittest.json
      @@ -70,13 +70,23 @@
                               },
                               {
                                   "coverage_state": "clean",
      -                            "end": 93,
      +                            "end": 91,
                                   "start": 47
                               },
      +                        {
      +                            "coverage_state": "covered",
      +                            "end": 96,
      +                            "start": 92
      +                        },
      +                        {
      +                            "coverage_state": "clean",
      +                            "end": 97,
      +                            "start": 97
      +                        },
                               {
                                   "coverage_state": "covered",
                                   "end": 98,
      -                            "start": 94
      +                            "start": 98
                               },
                               {
                                   "coverage_state": "clean",
      @@ -85,48 +95,48 @@
                               },
                               {
                                   "coverage_state": "covered",
      -                            "end": 100,
      +                            "end": 106,
                                   "start": 100
                               },
                               {
                                   "coverage_state": "clean",
      -                            "end": 101,
      -                            "start": 101
      +                            "end": 107,
      +                            "start": 107
                               },
                               {
                                   "coverage_state": "covered",
      -                            "end": 108,
      -                            "start": 102
      +                            "end": 109,
      +                            "start": 108
                               },
                               {
                                   "coverage_state": "clean",
      -                            "end": 109,
      -                            "start": 109
      +                            "end": 110,
      +                            "start": 110
                               },
                               {
                                   "coverage_state": "covered",
                                   "end": 111,
      -                            "start": 110
      +                            "start": 111
                               },
                               {
                                   "coverage_state": "clean",
      -                            "end": 112,
      +                            "end": 117,
                                   "start": 112
                               },
                               {
      -                            "coverage_state": "covered",
      -                            "end": 113,
      -                            "start": 113
      +                            "coverage_state": "uncovered",
      +                            "end": 119,
      +                            "start": 118
                               },
                               {
                                   "coverage_state": "clean",
      -                            "end": 119,
      -                            "start": 114
      +                            "end": 120,
      +                            "start": 120
                               },
                               {
                                   "coverage_state": "uncovered",
                                   "end": 121,
      -                            "start": 120
      +                            "start": 121
                               },
                               {
                                   "coverage_state": "clean",
      @@ -134,84 +144,84 @@
                                   "start": 122
                               },
                               {
      -                            "coverage_state": "uncovered",
      +                            "coverage_state": "covered",
                                   "end": 123,
                                   "start": 123
                               },
                               {
                                   "coverage_state": "clean",
      -                            "end": 124,
      +                            "end": 132,
                                   "start": 124
                               },
                               {
      -                            "coverage_state": "covered",
      -                            "end": 125,
      -                            "start": 125
      +                            "coverage_state": "uncovered",
      +                            "end": 134,
      +                            "start": 133
                               },
                               {
                                   "coverage_state": "clean",
      -                            "end": 134,
      -                            "start": 126
      -                        },
      -                        {
      -                            "coverage_state": "uncovered",
      -                            "end": 136,
      +                            "end": 135,
                                   "start": 135
                               },
      +                        {
      +                            "coverage_state": "covered",
      +                            "end": 136,
      +                            "start": 136
      +                        },
                               {
                                   "coverage_state": "clean",
      -                            "end": 137,
      +                            "end": 143,
                                   "start": 137
                               },
                               {
                                   "coverage_state": "covered",
      -                            "end": 138,
      -                            "start": 138
      +                            "end": 146,
      +                            "start": 144
                               },
                               {
      -                            "coverage_state": "clean",
      -                            "end": 145,
      -                            "start": 139
      +                            "coverage_state": "partially-covered",
      +                            "end": 147,
      +                            "start": 147
                               },
                               {
                                   "coverage_state": "covered",
                                   "end": 148,
      -                            "start": 146
      +                            "start": 148
                               },
                               {
      -                            "coverage_state": "partially-covered",
      +                            "coverage_state": "clean",
                                   "end": 149,
                                   "start": 149
                               },
                               {
      -                            "coverage_state": "covered",
      -                            "end": 150,
      +                            "coverage_state": "uncovered",
      +                            "end": 152,
                                   "start": 150
                               },
      -                        {
      -                            "coverage_state": "clean",
      -                            "end": 151,
      -                            "start": 151
      -                        },
      -                        {
      -                            "coverage_state": "uncovered",
      -                            "end": 154,
      -                            "start": 152
      -                        },
                               {
                                   "coverage_state": "covered",
      -                            "end": 157,
      -                            "start": 155
      +                            "end": 155,
      +                            "start": 153
                               },
                               {
                                   "coverage_state": "partially-covered",
      -                            "end": 158,
      -                            "start": 158
      +                            "end": 156,
      +                            "start": 156
                               },
                               {
                                   "coverage_state": "covered",
      +                            "end": 161,
      +                            "start": 157
      +                        },
      +                        {
      +                            "coverage_state": "clean",
      +                            "end": 162,
      +                            "start": 162
      +                        },
      +                        {
      +                            "coverage_state": "uncovered",
                                   "end": 163,
      -                            "start": 159
      +                            "start": 163
                               },
                               {
                                   "coverage_state": "clean",
      @@ -219,54 +229,54 @@
                                   "start": 164
                               },
                               {
      -                            "coverage_state": "uncovered",
      -                            "end": 165,
      +                            "coverage_state": "covered",
      +                            "end": 166,
                                   "start": 165
                               },
                               {
                                   "coverage_state": "clean",
      -                            "end": 166,
      -                            "start": 166
      -                        },
      -                        {
      -                            "coverage_state": "covered",
      -                            "end": 168,
      +                            "end": 167,
                                   "start": 167
                               },
                               {
      -                            "coverage_state": "clean",
      +                            "coverage_state": "partially-covered",
      +                            "end": 168,
      +                            "start": 168
      +                        },
      +                        {
      +                            "coverage_state": "covered",
                                   "end": 169,
                                   "start": 169
                               },
                               {
      -                            "coverage_state": "partially-covered",
      -                            "end": 170,
      +                            "coverage_state": "uncovered",
      +                            "end": 171,
                                   "start": 170
                               },
                               {
                                   "coverage_state": "covered",
      -                            "end": 171,
      -                            "start": 171
      -                        },
      -                        {
      -                            "coverage_state": "uncovered",
      -                            "end": 173,
      +                            "end": 172,
                                   "start": 172
                               },
      +                        {
      +                            "coverage_state": "clean",
      +                            "end": 173,
      +                            "start": 173
      +                        },
                               {
                                   "coverage_state": "covered",
      -                            "end": 174,
      +                            "end": 176,
                                   "start": 174
                               },
                               {
                                   "coverage_state": "clean",
      -                            "end": 175,
      -                            "start": 175
      +                            "end": 177,
      +                            "start": 177
                               },
                               {
                                   "coverage_state": "covered",
                                   "end": 178,
      -                            "start": 176
      +                            "start": 178
                               },
                               {
                                   "coverage_state": "clean",
      @@ -275,18 +285,18 @@
                               },
                               {
                                   "coverage_state": "covered",
      -                            "end": 180,
      +                            "end": 182,
                                   "start": 180
                               },
                               {
                                   "coverage_state": "clean",
      -                            "end": 181,
      -                            "start": 181
      +                            "end": 183,
      +                            "start": 183
                               },
                               {
                                   "coverage_state": "covered",
                                   "end": 184,
      -                            "start": 182
      +                            "start": 184
                               },
                               {
                                   "coverage_state": "clean",
      @@ -295,205 +305,185 @@
                               },
                               {
                                   "coverage_state": "covered",
      -                            "end": 186,
      +                            "end": 194,
                                   "start": 186
                               },
      -                        {
      -                            "coverage_state": "clean",
      -                            "end": 187,
      -                            "start": 187
      -                        },
      -                        {
      -                            "coverage_state": "covered",
      -                            "end": 196,
      -                            "start": 188
      -                        },
                               {
                                   "coverage_state": "uncovered",
      -                            "end": 198,
      +                            "end": 196,
      +                            "start": 195
      +                        },
      +                        {
      +                            "coverage_state": "clean",
      +                            "end": 197,
                                   "start": 197
                               },
      -                        {
      -                            "coverage_state": "clean",
      -                            "end": 199,
      -                            "start": 199
      -                        },
                               {
                                   "coverage_state": "covered",
      -                            "end": 205,
      -                            "start": 200
      +                            "end": 203,
      +                            "start": 198
                               },
                               {
                                   "coverage_state": "partially-covered",
      -                            "end": 206,
      -                            "start": 206
      +                            "end": 204,
      +                            "start": 204
                               },
                               {
                                   "coverage_state": "uncovered",
      -                            "end": 207,
      -                            "start": 207
      +                            "end": 205,
      +                            "start": 205
                               },
                               {
                                   "coverage_state": "covered",
      -                            "end": 214,
      -                            "start": 208
      +                            "end": 212,
      +                            "start": 206
                               },
                               {
                                   "coverage_state": "clean",
      -                            "end": 215,
      -                            "start": 215
      +                            "end": 213,
      +                            "start": 213
                               },
                               {
                                   "coverage_state": "covered",
      -                            "end": 221,
      -                            "start": 216
      +                            "end": 219,
      +                            "start": 214
                               },
                               {
                                   "coverage_state": "clean",
      +                            "end": 220,
      +                            "start": 220
      +                        },
      +                        {
      +                            "coverage_state": "covered",
                                   "end": 222,
      -                            "start": 222
      +                            "start": 221
                               },
                               {
      -                            "coverage_state": "covered",
      -                            "end": 224,
      +                            "coverage_state": "clean",
      +                            "end": 223,
                                   "start": 223
                               },
                               {
      -                            "coverage_state": "clean",
      +                            "coverage_state": "covered",
                                   "end": 225,
      -                            "start": 225
      +                            "start": 224
      +                        },
      +                        {
      +                            "coverage_state": "clean",
      +                            "end": 226,
      +                            "start": 226
                               },
                               {
                                   "coverage_state": "covered",
                                   "end": 227,
      -                            "start": 226
      +                            "start": 227
                               },
                               {
      -                            "coverage_state": "clean",
      +                            "coverage_state": "partially-covered",
                                   "end": 228,
                                   "start": 228
                               },
                               {
      -                            "coverage_state": "covered",
      +                            "coverage_state": "uncovered",
                                   "end": 229,
                                   "start": 229
                               },
                               {
      -                            "coverage_state": "partially-covered",
      -                            "end": 230,
      +                            "coverage_state": "covered",
      +                            "end": 231,
                                   "start": 230
                               },
                               {
      -                            "coverage_state": "uncovered",
      -                            "end": 231,
      -                            "start": 231
      -                        },
      -                        {
      -                            "coverage_state": "covered",
      -                            "end": 233,
      +                            "coverage_state": "partially-covered",
      +                            "end": 232,
                                   "start": 232
                               },
      -                        {
      -                            "coverage_state": "partially-covered",
      -                            "end": 234,
      -                            "start": 234
      -                        },
                               {
                                   "coverage_state": "covered",
      -                            "end": 237,
      -                            "start": 235
      +                            "end": 235,
      +                            "start": 233
                               },
                               {
                                   "coverage_state": "clean",
      -                            "end": 238,
      -                            "start": 238
      +                            "end": 236,
      +                            "start": 236
                               },
                               {
                                   "coverage_state": "covered",
      -                            "end": 244,
      -                            "start": 239
      +                            "end": 242,
      +                            "start": 237
                               },
                               {
                                   "coverage_state": "clean",
      -                            "end": 245,
      -                            "start": 245
      +                            "end": 243,
      +                            "start": 243
      +                        },
      +                        {
      +                            "coverage_state": "covered",
      +                            "end": 246,
      +                            "start": 244
      +                        },
      +                        {
      +                            "coverage_state": "clean",
      +                            "end": 247,
      +                            "start": 247
                               },
                               {
                                   "coverage_state": "covered",
                                   "end": 248,
      -                            "start": 246
      +                            "start": 248
                               },
                               {
                                   "coverage_state": "clean",
      -                            "end": 249,
      +                            "end": 250,
                                   "start": 249
                               },
                               {
                                   "coverage_state": "covered",
      -                            "end": 250,
      -                            "start": 250
      -                        },
      -                        {
      -                            "coverage_state": "clean",
                                   "end": 251,
                                   "start": 251
                               },
                               {
      -                            "coverage_state": "covered",
      -                            "end": 256,
      +                            "coverage_state": "clean",
      +                            "end": 272,
                                   "start": 252
                               },
      -                        {
      -                            "coverage_state": "clean",
      -                            "end": 258,
      -                            "start": 257
      -                        },
                               {
                                   "coverage_state": "covered",
      -                            "end": 259,
      -                            "start": 259
      +                            "end": 278,
      +                            "start": 273
                               },
                               {
                                   "coverage_state": "clean",
      -                            "end": 280,
      -                            "start": 260
      +                            "end": 279,
      +                            "start": 279
                               },
                               {
                                   "coverage_state": "covered",
      -                            "end": 286,
      -                            "start": 281
      +                            "end": 281,
      +                            "start": 280
                               },
                               {
                                   "coverage_state": "clean",
      -                            "end": 287,
      -                            "start": 287
      +                            "end": 282,
      +                            "start": 282
                               },
                               {
                                   "coverage_state": "covered",
      -                            "end": 289,
      -                            "start": 288
      -                        },
      -                        {
      -                            "coverage_state": "clean",
      -                            "end": 290,
      -                            "start": 290
      -                        },
      -                        {
      -                            "coverage_state": "covered",
      -                            "end": 296,
      -                            "start": 291
      +                            "end": 288,
      +                            "start": 283
                               },
                               {
                                   "coverage_state": "clean",
                                   "end": null,
      -                            "start": 297
      +                            "start": 289
                               }
                           ],
      -                    "line_coverage": 89.8,
      +                    "line_coverage": 89.44,
                           "name": "caching.__init__.py"
                       }
                   ],
      -            "line_coverage": 89.8,
      +            "line_coverage": 89.44,
                   "name": "caching"
               }
           ],
      @@ -539,7 +529,7 @@
               "Name": "caching",
               "State": "Released",
               "Supported Interpreters": "python3",
      -        "Version": "c71cdaad69dc06d7b917e6a006dc093f"
      +        "Version": "df0033510331110d2a749ab2e6ec5f9f"
           },
           "testrun_list": [
               {
      @@ -560,8 +550,8 @@
                   "testcases": {
                       "caching.property_cache_json: Test cached data (full init)": {
                           "args": null,
      -                    "asctime": "2024-09-22 00:06:08,819",
      -                    "created": 1726956368.819587,
      +                    "asctime": "2024-09-22 12:01:39,830",
      +                    "created": 1726999299.830849,
                           "exc_info": null,
                           "exc_text": null,
                           "filename": "__init__.py",
      @@ -572,13 +562,13 @@
                           "message": "caching.property_cache_json: Test cached data (full init)",
                           "module": "__init__",
                           "moduleLogger": [],
      -                    "msecs": 819.0,
      +                    "msecs": 830.0,
                           "msg": "caching.property_cache_json: Test cached data (full init)",
                           "name": "__tLogger__",
                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/report/__init__.py",
      -                    "process": 281640,
      +                    "process": 291252,
                           "processName": "MainProcess",
      -                    "relativeCreated": 78.28092575073242,
      +                    "relativeCreated": 79.49566841125488,
                           "stack_info": null,
                           "testcaseLogger": [
                               {
      @@ -586,8 +576,8 @@
                                       "property_cache_json",
                                       "True"
                                   ],
      -                            "asctime": "2024-09-22 00:06:08,820",
      -                            "created": 1726956368.8206158,
      +                            "asctime": "2024-09-22 12:01:39,832",
      +                            "created": 1726999299.8320267,
                                   "exc_info": null,
                                   "exc_text": null,
                                   "filename": "test_helpers.py",
      @@ -600,8 +590,8 @@
                                   "moduleLogger": [
                                       {
                                           "args": [],
      -                                    "asctime": "2024-09-22 00:06:08,819",
      -                                    "created": 1726956368.819698,
      +                                    "asctime": "2024-09-22 12:01:39,831",
      +                                    "created": 1726999299.8310149,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test_helpers.py",
      @@ -611,23 +601,23 @@
                                           "lineno": 17,
                                           "message": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
                                           "module": "test_helpers",
      -                                    "msecs": 819.0,
      +                                    "msecs": 831.0,
                                           "msg": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 78.39202880859375,
      +                                    "relativeCreated": 79.66160774230957,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       },
                                       {
                                           "args": [
                                               "/home/dirk/my_repositories/unittest/caching/unittest/output_data/cache_data_test_load_on_init.json"
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,819",
      -                                    "created": 1726956368.8197908,
      +                                    "asctime": "2024-09-22 12:01:39,831",
      +                                    "created": 1726999299.8311253,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test_helpers.py",
      @@ -637,34 +627,34 @@
                                           "lineno": 21,
                                           "message": "Initialising cached class with /home/dirk/my_repositories/unittest/caching/unittest/output_data/cache_data_test_load_on_init.json as cache file.",
                                           "module": "test_helpers",
      -                                    "msecs": 819.0,
      +                                    "msecs": 831.0,
                                           "msg": "Initialising cached class with %s as cache file.",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 78.48477363586426,
      +                                    "relativeCreated": 79.7719955444336,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       }
                                   ],
      -                            "msecs": 820.0,
      +                            "msecs": 832.0,
                                   "msg": "Initialising %s (load_all_on_init=%s).",
                                   "name": "__tLogger__",
                                   "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
      -                            "process": 281640,
      +                            "process": 291252,
                                   "processName": "MainProcess",
      -                            "relativeCreated": 79.30970191955566,
      +                            "relativeCreated": 80.6734561920166,
                                   "stack_info": null,
      -                            "thread": 139910820048960,
      +                            "thread": 139667813142592,
                                   "threadName": "MainThread",
      -                            "time_consumption": 0.0008249282836914062
      +                            "time_consumption": 0.0009014606475830078
                               },
                               {
                                   "args": [],
      -                            "asctime": "2024-09-22 00:06:08,821",
      -                            "created": 1726956368.821012,
      +                            "asctime": "2024-09-22 12:01:39,832",
      +                            "created": 1726999299.8322976,
                                   "exc_info": null,
                                   "exc_text": null,
                                   "filename": "test_cached_data.py",
      @@ -675,15 +665,15 @@
                                   "message": "Collecting data from cache instance.",
                                   "module": "test_cached_data",
                                   "moduleLogger": [],
      -                            "msecs": 821.0,
      +                            "msecs": 832.0,
                                   "msg": "Collecting data from cache instance.",
                                   "name": "__tLogger__",
                                   "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_cached_data.py",
      -                            "process": 281640,
      +                            "process": 291252,
                                   "processName": "MainProcess",
      -                            "relativeCreated": 79.70595359802246,
      +                            "relativeCreated": 80.94429969787598,
                                   "stack_info": null,
      -                            "thread": 139910820048960,
      +                            "thread": 139667813142592,
                                   "threadName": "MainThread",
                                   "time_consumption": 0.0
                               },
      @@ -692,8 +682,8 @@
                                       "{'str': 'string', 'unicode': 'unicode', 'integer': 17, 'float': 3.14159, 'list': [1, 'two', '3', 4], 'dict': {'1': 1, '2': 'two', '3': '3', '4': 4}, 'uncached': 'uncached_data_of_class'}",
                                       ""
                                   ],
      -                            "asctime": "2024-09-22 00:06:08,821",
      -                            "created": 1726956368.82136,
      +                            "asctime": "2024-09-22 12:01:39,832",
      +                            "created": 1726999299.8326523,
                                   "exc_info": null,
                                   "exc_text": null,
                                   "filename": "test.py",
      @@ -710,8 +700,8 @@
                                               "{ 'str': 'string', 'unicode': 'unicode', 'integer': 17, 'float': 3.14159, 'list': [ 1, 'two', '3', 4 ], 'dict': { '1': 1, '2': 'two', '3': '3', '4': 4 }, 'uncached': 'uncached_data_of_class' }",
                                               ""
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,821",
      -                                    "created": 1726956368.8211427,
      +                                    "asctime": "2024-09-22 12:01:39,832",
      +                                    "created": 1726999299.8324304,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test.py",
      @@ -721,15 +711,15 @@
                                           "lineno": 22,
                                           "message": "Result (Cached data): { 'str': 'string', 'unicode': 'unicode', 'integer': 17, 'float': 3.14159, 'list': [ 1, 'two', '3', 4 ], 'dict': { '1': 1, '2': 'two', '3': '3', '4': 4 }, 'uncached': 'uncached_data_of_class' } ()",
                                           "module": "test",
      -                                    "msecs": 821.0,
      +                                    "msecs": 832.0,
                                           "msg": "Result (%s): %s (%s)",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 79.83660697937012,
      +                                    "relativeCreated": 81.07709884643555,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       },
                                       {
      @@ -739,8 +729,8 @@
                                               "{ 'str': 'string', 'unicode': 'unicode', 'integer': 17, 'float': 3.14159, 'list': [ 1, 'two', '3', 4 ], 'dict': { '1': 1, '2': 'two', '3': '3', '4': 4 }, 'uncached': 'uncached_data_of_class' }",
                                               ""
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,821",
      -                                    "created": 1726956368.8212316,
      +                                    "asctime": "2024-09-22 12:01:39,832",
      +                                    "created": 1726999299.8325212,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test.py",
      @@ -750,41 +740,41 @@
                                           "lineno": 26,
                                           "message": "Expectation (Cached data): result = { 'str': 'string', 'unicode': 'unicode', 'integer': 17, 'float': 3.14159, 'list': [ 1, 'two', '3', 4 ], 'dict': { '1': 1, '2': 'two', '3': '3', '4': 4 }, 'uncached': 'uncached_data_of_class' } ()",
                                           "module": "test",
      -                                    "msecs": 821.0,
      +                                    "msecs": 832.0,
                                           "msg": "Expectation (%s): result %s %s (%s)",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 79.925537109375,
      +                                    "relativeCreated": 81.16793632507324,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       }
                                   ],
      -                            "msecs": 821.0,
      +                            "msecs": 832.0,
                                   "msg": "Cached data is correct (Content %s and Type is %s).",
                                   "name": "__tLogger__",
                                   "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                            "process": 281640,
      +                            "process": 291252,
                                   "processName": "MainProcess",
      -                            "relativeCreated": 80.05404472351074,
      +                            "relativeCreated": 81.2990665435791,
                                   "stack_info": null,
      -                            "thread": 139910820048960,
      +                            "thread": 139667813142592,
                                   "threadName": "MainThread",
      -                            "time_consumption": 0.0001285076141357422
      +                            "time_consumption": 0.00013113021850585938
                               }
                           ],
      -                    "thread": 139910820048960,
      +                    "thread": 139667813142592,
                           "threadName": "MainThread",
      -                    "time_consumption": 0.0017731189727783203,
      -                    "time_finished": "2024-09-22 00:06:08,821",
      -                    "time_start": "2024-09-22 00:06:08,819"
      +                    "time_consumption": 0.0018033981323242188,
      +                    "time_finished": "2024-09-22 12:01:39,832",
      +                    "time_start": "2024-09-22 12:01:39,830"
                       },
                       "caching.property_cache_json: Test cached data (partially init)": {
                           "args": null,
      -                    "asctime": "2024-09-22 00:06:08,821",
      -                    "created": 1726956368.821532,
      +                    "asctime": "2024-09-22 12:01:39,832",
      +                    "created": 1726999299.832839,
                           "exc_info": null,
                           "exc_text": null,
                           "filename": "__init__.py",
      @@ -795,13 +785,13 @@
                           "message": "caching.property_cache_json: Test cached data (partially init)",
                           "module": "__init__",
                           "moduleLogger": [],
      -                    "msecs": 821.0,
      +                    "msecs": 832.0,
                           "msg": "caching.property_cache_json: Test cached data (partially init)",
                           "name": "__tLogger__",
                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/report/__init__.py",
      -                    "process": 281640,
      +                    "process": 291252,
                           "processName": "MainProcess",
      -                    "relativeCreated": 80.22594451904297,
      +                    "relativeCreated": 81.48574829101562,
                           "stack_info": null,
                           "testcaseLogger": [
                               {
      @@ -809,8 +799,8 @@
                                       "property_cache_json",
                                       "True"
                                   ],
      -                            "asctime": "2024-09-22 00:06:08,822",
      -                            "created": 1726956368.822578,
      +                            "asctime": "2024-09-22 12:01:39,833",
      +                            "created": 1726999299.8338294,
                                   "exc_info": null,
                                   "exc_text": null,
                                   "filename": "test_helpers.py",
      @@ -823,8 +813,8 @@
                                   "moduleLogger": [
                                       {
                                           "args": [],
      -                                    "asctime": "2024-09-22 00:06:08,821",
      -                                    "created": 1726956368.8216386,
      +                                    "asctime": "2024-09-22 12:01:39,833",
      +                                    "created": 1726999299.8330023,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test_helpers.py",
      @@ -834,23 +824,23 @@
                                           "lineno": 17,
                                           "message": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
                                           "module": "test_helpers",
      -                                    "msecs": 821.0,
      +                                    "msecs": 833.0,
                                           "msg": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 80.33251762390137,
      +                                    "relativeCreated": 81.6490650177002,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       },
                                       {
                                           "args": [
                                               "/home/dirk/my_repositories/unittest/caching/unittest/output_data/cache_data_test_no_load_on_init.json"
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,821",
      -                                    "created": 1726956368.8217292,
      +                                    "asctime": "2024-09-22 12:01:39,833",
      +                                    "created": 1726999299.833109,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test_helpers.py",
      @@ -860,34 +850,34 @@
                                           "lineno": 21,
                                           "message": "Initialising cached class with /home/dirk/my_repositories/unittest/caching/unittest/output_data/cache_data_test_no_load_on_init.json as cache file.",
                                           "module": "test_helpers",
      -                                    "msecs": 821.0,
      +                                    "msecs": 833.0,
                                           "msg": "Initialising cached class with %s as cache file.",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 80.42311668395996,
      +                                    "relativeCreated": 81.7556381225586,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       }
                                   ],
      -                            "msecs": 822.0,
      +                            "msecs": 833.0,
                                   "msg": "Initialising %s (load_all_on_init=%s).",
                                   "name": "__tLogger__",
                                   "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
      -                            "process": 281640,
      +                            "process": 291252,
                                   "processName": "MainProcess",
      -                            "relativeCreated": 81.27188682556152,
      +                            "relativeCreated": 82.47613906860352,
                                   "stack_info": null,
      -                            "thread": 139910820048960,
      +                            "thread": 139667813142592,
                                   "threadName": "MainThread",
      -                            "time_consumption": 0.0008487701416015625
      +                            "time_consumption": 0.0007205009460449219
                               },
                               {
                                   "args": [],
      -                            "asctime": "2024-09-22 00:06:08,822",
      -                            "created": 1726956368.8229673,
      +                            "asctime": "2024-09-22 12:01:39,834",
      +                            "created": 1726999299.834106,
                                   "exc_info": null,
                                   "exc_text": null,
                                   "filename": "test_cached_data.py",
      @@ -898,15 +888,15 @@
                                   "message": "Collecting data from cache instance.",
                                   "module": "test_cached_data",
                                   "moduleLogger": [],
      -                            "msecs": 822.0,
      +                            "msecs": 834.0,
                                   "msg": "Collecting data from cache instance.",
                                   "name": "__tLogger__",
                                   "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_cached_data.py",
      -                            "process": 281640,
      +                            "process": 291252,
                                   "processName": "MainProcess",
      -                            "relativeCreated": 81.66122436523438,
      +                            "relativeCreated": 82.75270462036133,
                                   "stack_info": null,
      -                            "thread": 139910820048960,
      +                            "thread": 139667813142592,
                                   "threadName": "MainThread",
                                   "time_consumption": 0.0
                               },
      @@ -915,8 +905,8 @@
                                       "{'str': 'string', 'unicode': 'unicode', 'integer': 17, 'float': 3.14159, 'list': [1, 'two', '3', 4], 'dict': {'1': 1, '2': 'two', '3': '3', '4': 4}, 'uncached': 'uncached_data_of_class'}",
                                       ""
                                   ],
      -                            "asctime": "2024-09-22 00:06:08,823",
      -                            "created": 1726956368.8233235,
      +                            "asctime": "2024-09-22 12:01:39,834",
      +                            "created": 1726999299.8344505,
                                   "exc_info": null,
                                   "exc_text": null,
                                   "filename": "test.py",
      @@ -933,8 +923,8 @@
                                               "{ 'str': 'string', 'unicode': 'unicode', 'integer': 17, 'float': 3.14159, 'list': [ 1, 'two', '3', 4 ], 'dict': { '1': 1, '2': 'two', '3': '3', '4': 4 }, 'uncached': 'uncached_data_of_class' }",
                                               ""
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,823",
      -                                    "created": 1726956368.8230968,
      +                                    "asctime": "2024-09-22 12:01:39,834",
      +                                    "created": 1726999299.8342357,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test.py",
      @@ -944,15 +934,15 @@
                                           "lineno": 22,
                                           "message": "Result (Cached data): { 'str': 'string', 'unicode': 'unicode', 'integer': 17, 'float': 3.14159, 'list': [ 1, 'two', '3', 4 ], 'dict': { '1': 1, '2': 'two', '3': '3', '4': 4 }, 'uncached': 'uncached_data_of_class' } ()",
                                           "module": "test",
      -                                    "msecs": 823.0,
      +                                    "msecs": 834.0,
                                           "msg": "Result (%s): %s (%s)",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 81.79068565368652,
      +                                    "relativeCreated": 82.88240432739258,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       },
                                       {
      @@ -962,8 +952,8 @@
                                               "{ 'str': 'string', 'unicode': 'unicode', 'integer': 17, 'float': 3.14159, 'list': [ 1, 'two', '3', 4 ], 'dict': { '1': 1, '2': 'two', '3': '3', '4': 4 }, 'uncached': 'uncached_data_of_class' }",
                                               ""
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,823",
      -                                    "created": 1726956368.8231893,
      +                                    "asctime": "2024-09-22 12:01:39,834",
      +                                    "created": 1726999299.8343287,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test.py",
      @@ -973,41 +963,41 @@
                                           "lineno": 26,
                                           "message": "Expectation (Cached data): result = { 'str': 'string', 'unicode': 'unicode', 'integer': 17, 'float': 3.14159, 'list': [ 1, 'two', '3', 4 ], 'dict': { '1': 1, '2': 'two', '3': '3', '4': 4 }, 'uncached': 'uncached_data_of_class' } ()",
                                           "module": "test",
      -                                    "msecs": 823.0,
      +                                    "msecs": 834.0,
                                           "msg": "Expectation (%s): result %s %s (%s)",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 81.88319206237793,
      +                                    "relativeCreated": 82.97538757324219,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       }
                                   ],
      -                            "msecs": 823.0,
      +                            "msecs": 834.0,
                                   "msg": "Cached data is correct (Content %s and Type is %s).",
                                   "name": "__tLogger__",
                                   "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                            "process": 281640,
      +                            "process": 291252,
                                   "processName": "MainProcess",
      -                            "relativeCreated": 82.01742172241211,
      +                            "relativeCreated": 83.09721946716309,
                                   "stack_info": null,
      -                            "thread": 139910820048960,
      +                            "thread": 139667813142592,
                                   "threadName": "MainThread",
      -                            "time_consumption": 0.0001342296600341797
      +                            "time_consumption": 0.00012183189392089844
                               }
                           ],
      -                    "thread": 139910820048960,
      +                    "thread": 139667813142592,
                           "threadName": "MainThread",
      -                    "time_consumption": 0.0017914772033691406,
      -                    "time_finished": "2024-09-22 00:06:08,823",
      -                    "time_start": "2024-09-22 00:06:08,821"
      +                    "time_consumption": 0.001611471176147461,
      +                    "time_finished": "2024-09-22 12:01:39,834",
      +                    "time_start": "2024-09-22 12:01:39,832"
                       },
                       "caching.property_cache_json: Test execution of save callback (full init)": {
                           "args": null,
      -                    "asctime": "2024-09-22 00:06:08,838",
      -                    "created": 1726956368.8380084,
      +                    "asctime": "2024-09-22 12:01:39,849",
      +                    "created": 1726999299.8492773,
                           "exc_info": null,
                           "exc_text": null,
                           "filename": "__init__.py",
      @@ -1018,19 +1008,19 @@
                           "message": "caching.property_cache_json: Test execution of save callback (full init)",
                           "module": "__init__",
                           "moduleLogger": [],
      -                    "msecs": 838.0,
      +                    "msecs": 849.0,
                           "msg": "caching.property_cache_json: Test execution of save callback (full init)",
                           "name": "__tLogger__",
                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/report/__init__.py",
      -                    "process": 281640,
      +                    "process": 291252,
                           "processName": "MainProcess",
      -                    "relativeCreated": 96.70233726501465,
      +                    "relativeCreated": 97.92399406433105,
                           "stack_info": null,
                           "testcaseLogger": [
                               {
                                   "args": [],
      -                            "asctime": "2024-09-22 00:06:08,838",
      -                            "created": 1726956368.8381436,
      +                            "asctime": "2024-09-22 12:01:39,849",
      +                            "created": 1726999299.849504,
                                   "exc_info": null,
                                   "exc_text": null,
                                   "filename": "test_save_callback.py",
      @@ -1041,15 +1031,15 @@
                                   "message": "Installing save_callback, which sets a variable to True on execution.",
                                   "module": "test_save_callback",
                                   "moduleLogger": [],
      -                            "msecs": 838.0,
      +                            "msecs": 849.0,
                                   "msg": "Installing save_callback, which sets a variable to True on execution.",
                                   "name": "__tLogger__",
                                   "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_save_callback.py",
      -                            "process": 281640,
      +                            "process": 291252,
                                   "processName": "MainProcess",
      -                            "relativeCreated": 96.83752059936523,
      +                            "relativeCreated": 98.15073013305664,
                                   "stack_info": null,
      -                            "thread": 139910820048960,
      +                            "thread": 139667813142592,
                                   "threadName": "MainThread",
                                   "time_consumption": 0.0
                               },
      @@ -1058,8 +1048,8 @@
                                       "True",
                                       ""
                                   ],
      -                            "asctime": "2024-09-22 00:06:08,838",
      -                            "created": 1726956368.8385892,
      +                            "asctime": "2024-09-22 12:01:39,850",
      +                            "created": 1726999299.850037,
                                   "exc_info": null,
                                   "exc_text": null,
                                   "filename": "test.py",
      @@ -1076,8 +1066,8 @@
                                               "True",
                                               ""
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,838",
      -                                    "created": 1726956368.838404,
      +                                    "asctime": "2024-09-22 12:01:39,849",
      +                                    "created": 1726999299.849862,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test.py",
      @@ -1087,15 +1077,15 @@
                                           "lineno": 22,
                                           "message": "Result (Save callback execution variable): True ()",
                                           "module": "test",
      -                                    "msecs": 838.0,
      +                                    "msecs": 849.0,
                                           "msg": "Result (%s): %s (%s)",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 97.09787368774414,
      +                                    "relativeCreated": 98.50883483886719,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       },
                                       {
      @@ -1105,8 +1095,8 @@
                                               "True",
                                               ""
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,838",
      -                                    "created": 1726956368.8385034,
      +                                    "asctime": "2024-09-22 12:01:39,849",
      +                                    "created": 1726999299.849942,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test.py",
      @@ -1116,41 +1106,41 @@
                                           "lineno": 26,
                                           "message": "Expectation (Save callback execution variable): result = True ()",
                                           "module": "test",
      -                                    "msecs": 838.0,
      +                                    "msecs": 849.0,
                                           "msg": "Expectation (%s): result %s %s (%s)",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 97.19729423522949,
      +                                    "relativeCreated": 98.58870506286621,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       }
                                   ],
      -                            "msecs": 838.0,
      +                            "msecs": 850.0,
                                   "msg": "Save callback execution variable is correct (Content %s and Type is %s).",
                                   "name": "__tLogger__",
                                   "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                            "process": 281640,
      +                            "process": 291252,
                                   "processName": "MainProcess",
      -                            "relativeCreated": 97.28312492370605,
      +                            "relativeCreated": 98.68383407592773,
                                   "stack_info": null,
      -                            "thread": 139910820048960,
      +                            "thread": 139667813142592,
                                   "threadName": "MainThread",
      -                            "time_consumption": 8.58306884765625e-05
      +                            "time_consumption": 9.512901306152344e-05
                               }
                           ],
      -                    "thread": 139910820048960,
      +                    "thread": 139667813142592,
                           "threadName": "MainThread",
      -                    "time_consumption": 0.0005807876586914062,
      -                    "time_finished": "2024-09-22 00:06:08,838",
      -                    "time_start": "2024-09-22 00:06:08,838"
      +                    "time_consumption": 0.0007598400115966797,
      +                    "time_finished": "2024-09-22 12:01:39,850",
      +                    "time_start": "2024-09-22 12:01:39,849"
                       },
                       "caching.property_cache_json: Test full initialised JSON-Cache-Object": {
                           "args": null,
      -                    "asctime": "2024-09-22 00:06:08,814",
      -                    "created": 1726956368.8143415,
      +                    "asctime": "2024-09-22 12:01:39,825",
      +                    "created": 1726999299.8256323,
                           "exc_info": null,
                           "exc_text": null,
                           "filename": "__init__.py",
      @@ -1161,13 +1151,13 @@
                           "message": "caching.property_cache_json: Test full initialised JSON-Cache-Object",
                           "module": "__init__",
                           "moduleLogger": [],
      -                    "msecs": 814.0,
      +                    "msecs": 825.0,
                           "msg": "caching.property_cache_json: Test full initialised JSON-Cache-Object",
                           "name": "__tLogger__",
                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/report/__init__.py",
      -                    "process": 281640,
      +                    "process": 291252,
                           "processName": "MainProcess",
      -                    "relativeCreated": 73.03547859191895,
      +                    "relativeCreated": 74.2790699005127,
                           "stack_info": null,
                           "testcaseLogger": [
                               {
      @@ -1175,8 +1165,8 @@
                                       "property_cache_json",
                                       "True"
                                   ],
      -                            "asctime": "2024-09-22 00:06:08,815",
      -                            "created": 1726956368.8157668,
      +                            "asctime": "2024-09-22 12:01:39,826",
      +                            "created": 1726999299.8269844,
                                   "exc_info": null,
                                   "exc_text": null,
                                   "filename": "test_helpers.py",
      @@ -1189,8 +1179,8 @@
                                   "moduleLogger": [
                                       {
                                           "args": [],
      -                                    "asctime": "2024-09-22 00:06:08,814",
      -                                    "created": 1726956368.8145773,
      +                                    "asctime": "2024-09-22 12:01:39,825",
      +                                    "created": 1726999299.8258805,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test_helpers.py",
      @@ -1200,23 +1190,23 @@
                                           "lineno": 17,
                                           "message": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
                                           "module": "test_helpers",
      -                                    "msecs": 814.0,
      +                                    "msecs": 825.0,
                                           "msg": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 73.27127456665039,
      +                                    "relativeCreated": 74.52726364135742,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       },
                                       {
                                           "args": [
                                               "/home/dirk/my_repositories/unittest/caching/unittest/output_data/load_on_init.json"
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,814",
      -                                    "created": 1726956368.8147206,
      +                                    "asctime": "2024-09-22 12:01:39,826",
      +                                    "created": 1726999299.8260407,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test_helpers.py",
      @@ -1226,36 +1216,36 @@
                                           "lineno": 21,
                                           "message": "Initialising cached class with /home/dirk/my_repositories/unittest/caching/unittest/output_data/load_on_init.json as cache file.",
                                           "module": "test_helpers",
      -                                    "msecs": 814.0,
      +                                    "msecs": 826.0,
                                           "msg": "Initialising cached class with %s as cache file.",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 73.41456413269043,
      +                                    "relativeCreated": 74.68748092651367,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       }
                                   ],
      -                            "msecs": 815.0,
      +                            "msecs": 826.0,
                                   "msg": "Initialising %s (load_all_on_init=%s).",
                                   "name": "__tLogger__",
                                   "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
      -                            "process": 281640,
      +                            "process": 291252,
                                   "processName": "MainProcess",
      -                            "relativeCreated": 74.46074485778809,
      +                            "relativeCreated": 75.63114166259766,
                                   "stack_info": null,
      -                            "thread": 139910820048960,
      +                            "thread": 139667813142592,
                                   "threadName": "MainThread",
      -                            "time_consumption": 0.0010461807250976562
      +                            "time_consumption": 0.0009436607360839844
                               },
                               {
                                   "args": [
                                       "property_cache_json"
                                   ],
      -                            "asctime": "2024-09-22 00:06:08,816",
      -                            "created": 1726956368.8160992,
      +                            "asctime": "2024-09-22 12:01:39,827",
      +                            "created": 1726999299.8272943,
                                   "exc_info": null,
                                   "exc_text": null,
                                   "filename": "test_load_on_init.py",
      @@ -1270,8 +1260,8 @@
                                           "args": [
                                               "{'dict': {'1': 1, '2': 'two', '3': '3', '4': 4}, 'float': 3.14159, 'integer': 17, 'list': [1, 'two', '3', 4], 'str': 'string', 'unicode': 'unicode'}"
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,816",
      -                                    "created": 1726956368.8160298,
      +                                    "asctime": "2024-09-22 12:01:39,827",
      +                                    "created": 1726999299.8272245,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test_load_on_init.py",
      @@ -1281,37 +1271,37 @@
                                           "lineno": 20,
                                           "message": "Using storage object of cache class for comparison: {'dict': {'1': 1, '2': 'two', '3': '3', '4': 4}, 'float': 3.14159, 'integer': 17, 'list': [1, 'two', '3', 4], 'str': 'string', 'unicode': 'unicode'}",
                                           "module": "test_load_on_init",
      -                                    "msecs": 816.0,
      +                                    "msecs": 827.0,
                                           "msg": "Using storage object of cache class for comparison: %s",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_load_on_init.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 74.72372055053711,
      +                                    "relativeCreated": 75.87122917175293,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       }
                                   ],
      -                            "msecs": 816.0,
      +                            "msecs": 827.0,
                                   "msg": "Extracting storage object from %s for comparison.",
                                   "name": "__tLogger__",
                                   "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_load_on_init.py",
      -                            "process": 281640,
      +                            "process": 291252,
                                   "processName": "MainProcess",
      -                            "relativeCreated": 74.79310035705566,
      +                            "relativeCreated": 75.94108581542969,
                                   "stack_info": null,
      -                            "thread": 139910820048960,
      +                            "thread": 139667813142592,
                                   "threadName": "MainThread",
      -                            "time_consumption": 6.937980651855469e-05
      +                            "time_consumption": 6.985664367675781e-05
                               },
                               {
                                   "args": [
                                       "{'dict': {'1': 1, '2': 'two', '3': '3', '4': 4}, 'float': 3.14159, 'integer': 17, 'list': [1, 'two', '3', 4], 'str': 'string', 'unicode': 'unicode'}",
                                       ""
                                   ],
      -                            "asctime": "2024-09-22 00:06:08,816",
      -                            "created": 1726956368.8165066,
      +                            "asctime": "2024-09-22 12:01:39,827",
      +                            "created": 1726999299.8277056,
                                   "exc_info": null,
                                   "exc_text": null,
                                   "filename": "test.py",
      @@ -1328,8 +1318,8 @@
                                               "{ 'dict': { '1': 1, '2': 'two', '3': '3', '4': 4 }, 'float': 3.14159, 'integer': 17, 'list': [ 1, 'two', '3', 4 ], 'str': 'string', 'unicode': 'unicode' }",
                                               ""
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,816",
      -                                    "created": 1726956368.8162472,
      +                                    "asctime": "2024-09-22 12:01:39,827",
      +                                    "created": 1726999299.8274398,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test.py",
      @@ -1339,15 +1329,15 @@
                                           "lineno": 22,
                                           "message": "Result (Cache object): { 'dict': { '1': 1, '2': 'two', '3': '3', '4': 4 }, 'float': 3.14159, 'integer': 17, 'list': [ 1, 'two', '3', 4 ], 'str': 'string', 'unicode': 'unicode' } ()",
                                           "module": "test",
      -                                    "msecs": 816.0,
      +                                    "msecs": 827.0,
                                           "msg": "Result (%s): %s (%s)",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 74.94115829467773,
      +                                    "relativeCreated": 76.08652114868164,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       },
                                       {
      @@ -1357,8 +1347,8 @@
                                               "{ 'str': 'string', 'unicode': 'unicode', 'integer': 17, 'float': 3.14159, 'list': [ 1, 'two', '3', 4 ], 'dict': { '1': 1, '2': 'two', '3': '3', '4': 4 } }",
                                               ""
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,816",
      -                                    "created": 1726956368.8163443,
      +                                    "asctime": "2024-09-22 12:01:39,827",
      +                                    "created": 1726999299.8275366,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test.py",
      @@ -1368,41 +1358,41 @@
                                           "lineno": 26,
                                           "message": "Expectation (Cache object): result = { 'str': 'string', 'unicode': 'unicode', 'integer': 17, 'float': 3.14159, 'list': [ 1, 'two', '3', 4 ], 'dict': { '1': 1, '2': 'two', '3': '3', '4': 4 } } ()",
                                           "module": "test",
      -                                    "msecs": 816.0,
      +                                    "msecs": 827.0,
                                           "msg": "Expectation (%s): result %s %s (%s)",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 75.03819465637207,
      +                                    "relativeCreated": 76.18331909179688,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       }
                                   ],
      -                            "msecs": 816.0,
      +                            "msecs": 827.0,
                                   "msg": "Cache object is correct (Content %s and Type is %s).",
                                   "name": "__tLogger__",
                                   "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                            "process": 281640,
      +                            "process": 291252,
                                   "processName": "MainProcess",
      -                            "relativeCreated": 75.20055770874023,
      +                            "relativeCreated": 76.35235786437988,
                                   "stack_info": null,
      -                            "thread": 139910820048960,
      +                            "thread": 139667813142592,
                                   "threadName": "MainThread",
      -                            "time_consumption": 0.00016236305236816406
      +                            "time_consumption": 0.0001690387725830078
                               }
                           ],
      -                    "thread": 139910820048960,
      +                    "thread": 139667813142592,
                           "threadName": "MainThread",
      -                    "time_consumption": 0.002165079116821289,
      -                    "time_finished": "2024-09-22 00:06:08,816",
      -                    "time_start": "2024-09-22 00:06:08,814"
      +                    "time_consumption": 0.0020732879638671875,
      +                    "time_finished": "2024-09-22 12:01:39,827",
      +                    "time_start": "2024-09-22 12:01:39,825"
                       },
                       "caching.property_cache_json: Test get from source caused by changed uid (full init)": {
                           "args": null,
      -                    "asctime": "2024-09-22 00:06:08,830",
      -                    "created": 1726956368.830793,
      +                    "asctime": "2024-09-22 12:01:39,841",
      +                    "created": 1726999299.8417025,
                           "exc_info": null,
                           "exc_text": null,
                           "filename": "__init__.py",
      @@ -1413,13 +1403,13 @@
                           "message": "caching.property_cache_json: Test get from source caused by changed uid (full init)",
                           "module": "__init__",
                           "moduleLogger": [],
      -                    "msecs": 830.0,
      +                    "msecs": 841.0,
                           "msg": "caching.property_cache_json: Test get from source caused by changed uid (full init)",
                           "name": "__tLogger__",
                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/report/__init__.py",
      -                    "process": 281640,
      +                    "process": 291252,
                           "processName": "MainProcess",
      -                    "relativeCreated": 89.48683738708496,
      +                    "relativeCreated": 90.34919738769531,
                           "stack_info": null,
                           "testcaseLogger": [
                               {
      @@ -1427,8 +1417,8 @@
                                       "property_cache_json",
                                       "True"
                                   ],
      -                            "asctime": "2024-09-22 00:06:08,831",
      -                            "created": 1726956368.8319435,
      +                            "asctime": "2024-09-22 12:01:39,843",
      +                            "created": 1726999299.8431456,
                                   "exc_info": null,
                                   "exc_text": null,
                                   "filename": "test_helpers.py",
      @@ -1441,8 +1431,8 @@
                                   "moduleLogger": [
                                       {
                                           "args": [],
      -                                    "asctime": "2024-09-22 00:06:08,830",
      -                                    "created": 1726956368.8309062,
      +                                    "asctime": "2024-09-22 12:01:39,841",
      +                                    "created": 1726999299.8419297,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test_helpers.py",
      @@ -1452,23 +1442,23 @@
                                           "lineno": 17,
                                           "message": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
                                           "module": "test_helpers",
      -                                    "msecs": 830.0,
      +                                    "msecs": 841.0,
                                           "msg": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 89.6000862121582,
      +                                    "relativeCreated": 90.5764102935791,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       },
                                       {
                                           "args": [
                                               "/home/dirk/my_repositories/unittest/caching/unittest/output_data/uid_test_load_on_init.json"
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,831",
      -                                    "created": 1726956368.8310094,
      +                                    "asctime": "2024-09-22 12:01:39,842",
      +                                    "created": 1726999299.8421047,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test_helpers.py",
      @@ -1478,37 +1468,37 @@
                                           "lineno": 21,
                                           "message": "Initialising cached class with /home/dirk/my_repositories/unittest/caching/unittest/output_data/uid_test_load_on_init.json as cache file.",
                                           "module": "test_helpers",
      -                                    "msecs": 831.0,
      +                                    "msecs": 842.0,
                                           "msg": "Initialising cached class with %s as cache file.",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 89.70332145690918,
      +                                    "relativeCreated": 90.75140953063965,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       }
                                   ],
      -                            "msecs": 831.0,
      +                            "msecs": 843.0,
                                   "msg": "Initialising %s (load_all_on_init=%s).",
                                   "name": "__tLogger__",
                                   "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
      -                            "process": 281640,
      +                            "process": 291252,
                                   "processName": "MainProcess",
      -                            "relativeCreated": 90.6374454498291,
      +                            "relativeCreated": 91.79234504699707,
                                   "stack_info": null,
      -                            "thread": 139910820048960,
      +                            "thread": 139667813142592,
                                   "threadName": "MainThread",
      -                            "time_consumption": 0.0009341239929199219
      +                            "time_consumption": 0.0010409355163574219
                               },
                               {
                                   "args": [
                                       "{'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': ['one', 2, 3, '4'], 'dict': {'1': '1', '2': 2, '3': 'three', '4': '4'}}",
                                       ""
                                   ],
      -                            "asctime": "2024-09-22 00:06:08,833",
      -                            "created": 1726956368.833501,
      +                            "asctime": "2024-09-22 12:01:39,844",
      +                            "created": 1726999299.8449895,
                                   "exc_info": null,
                                   "exc_text": null,
                                   "filename": "test.py",
      @@ -1525,8 +1515,8 @@
                                               "{ 'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': [ 'one', 2, 3, '4' ], 'dict': { '1': '1', '2': 2, '3': 'three', '4': '4' } }",
                                               ""
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,833",
      -                                    "created": 1726956368.833273,
      +                                    "asctime": "2024-09-22 12:01:39,844",
      +                                    "created": 1726999299.8445797,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test.py",
      @@ -1536,15 +1526,15 @@
                                           "lineno": 22,
                                           "message": "Result (Instance data after changing uid): { 'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': [ 'one', 2, 3, '4' ], 'dict': { '1': '1', '2': 2, '3': 'three', '4': '4' } } ()",
                                           "module": "test",
      -                                    "msecs": 833.0,
      +                                    "msecs": 844.0,
                                           "msg": "Result (%s): %s (%s)",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 91.96686744689941,
      +                                    "relativeCreated": 93.22643280029297,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       },
                                       {
      @@ -1554,8 +1544,8 @@
                                               "{ 'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': [ 'one', 2, 3, '4' ], 'dict': { '1': '1', '2': 2, '3': 'three', '4': '4' } }",
                                               ""
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,833",
      -                                    "created": 1726956368.8333735,
      +                                    "asctime": "2024-09-22 12:01:39,844",
      +                                    "created": 1726999299.8447618,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test.py",
      @@ -1565,41 +1555,41 @@
                                           "lineno": 26,
                                           "message": "Expectation (Instance data after changing uid): result = { 'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': [ 'one', 2, 3, '4' ], 'dict': { '1': '1', '2': 2, '3': 'three', '4': '4' } } ()",
                                           "module": "test",
      -                                    "msecs": 833.0,
      +                                    "msecs": 844.0,
                                           "msg": "Expectation (%s): result %s %s (%s)",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 92.06748008728027,
      +                                    "relativeCreated": 93.40858459472656,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       }
                                   ],
      -                            "msecs": 833.0,
      +                            "msecs": 844.0,
                                   "msg": "Instance data after changing uid is correct (Content %s and Type is %s).",
                                   "name": "__tLogger__",
                                   "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                            "process": 281640,
      +                            "process": 291252,
                                   "processName": "MainProcess",
      -                            "relativeCreated": 92.19503402709961,
      +                            "relativeCreated": 93.63627433776855,
                                   "stack_info": null,
      -                            "thread": 139910820048960,
      +                            "thread": 139667813142592,
                                   "threadName": "MainThread",
      -                            "time_consumption": 0.00012755393981933594
      +                            "time_consumption": 0.0002276897430419922
                               }
                           ],
      -                    "thread": 139910820048960,
      +                    "thread": 139667813142592,
                           "threadName": "MainThread",
      -                    "time_consumption": 0.0027081966400146484,
      -                    "time_finished": "2024-09-22 00:06:08,833",
      -                    "time_start": "2024-09-22 00:06:08,830"
      +                    "time_consumption": 0.003287076950073242,
      +                    "time_finished": "2024-09-22 12:01:39,844",
      +                    "time_start": "2024-09-22 12:01:39,841"
                       },
                       "caching.property_cache_json: Test get from source caused by changed uid (partially init)": {
                           "args": null,
      -                    "asctime": "2024-09-22 00:06:08,833",
      -                    "created": 1726956368.8336759,
      +                    "asctime": "2024-09-22 12:01:39,845",
      +                    "created": 1726999299.8452923,
                           "exc_info": null,
                           "exc_text": null,
                           "filename": "__init__.py",
      @@ -1610,13 +1600,13 @@
                           "message": "caching.property_cache_json: Test get from source caused by changed uid (partially init)",
                           "module": "__init__",
                           "moduleLogger": [],
      -                    "msecs": 833.0,
      +                    "msecs": 845.0,
                           "msg": "caching.property_cache_json: Test get from source caused by changed uid (partially init)",
                           "name": "__tLogger__",
                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/report/__init__.py",
      -                    "process": 281640,
      +                    "process": 291252,
                           "processName": "MainProcess",
      -                    "relativeCreated": 92.36979484558105,
      +                    "relativeCreated": 93.93906593322754,
                           "stack_info": null,
                           "testcaseLogger": [
                               {
      @@ -1624,8 +1614,8 @@
                                       "property_cache_json",
                                       "True"
                                   ],
      -                            "asctime": "2024-09-22 00:06:08,834",
      -                            "created": 1726956368.8348489,
      +                            "asctime": "2024-09-22 12:01:39,846",
      +                            "created": 1726999299.8465333,
                                   "exc_info": null,
                                   "exc_text": null,
                                   "filename": "test_helpers.py",
      @@ -1638,8 +1628,8 @@
                                   "moduleLogger": [
                                       {
                                           "args": [],
      -                                    "asctime": "2024-09-22 00:06:08,833",
      -                                    "created": 1726956368.8337872,
      +                                    "asctime": "2024-09-22 12:01:39,845",
      +                                    "created": 1726999299.8454783,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test_helpers.py",
      @@ -1649,23 +1639,23 @@
                                           "lineno": 17,
                                           "message": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
                                           "module": "test_helpers",
      -                                    "msecs": 833.0,
      +                                    "msecs": 845.0,
                                           "msg": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 92.48113632202148,
      +                                    "relativeCreated": 94.12503242492676,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       },
                                       {
                                           "args": [
                                               "/home/dirk/my_repositories/unittest/caching/unittest/output_data/uid_test_no_load_on_init.json"
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,833",
      -                                    "created": 1726956368.833891,
      +                                    "asctime": "2024-09-22 12:01:39,845",
      +                                    "created": 1726999299.845637,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test_helpers.py",
      @@ -1675,37 +1665,37 @@
                                           "lineno": 21,
                                           "message": "Initialising cached class with /home/dirk/my_repositories/unittest/caching/unittest/output_data/uid_test_no_load_on_init.json as cache file.",
                                           "module": "test_helpers",
      -                                    "msecs": 833.0,
      +                                    "msecs": 845.0,
                                           "msg": "Initialising cached class with %s as cache file.",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 92.58484840393066,
      +                                    "relativeCreated": 94.2838191986084,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       }
                                   ],
      -                            "msecs": 834.0,
      +                            "msecs": 846.0,
                                   "msg": "Initialising %s (load_all_on_init=%s).",
                                   "name": "__tLogger__",
                                   "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
      -                            "process": 281640,
      +                            "process": 291252,
                                   "processName": "MainProcess",
      -                            "relativeCreated": 93.54281425476074,
      +                            "relativeCreated": 95.18003463745117,
                                   "stack_info": null,
      -                            "thread": 139910820048960,
      +                            "thread": 139667813142592,
                                   "threadName": "MainThread",
      -                            "time_consumption": 0.0009579658508300781
      +                            "time_consumption": 0.0008962154388427734
                               },
                               {
                                   "args": [
                                       "{'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': ['one', 2, 3, '4'], 'dict': {'1': '1', '2': 2, '3': 'three', '4': '4'}}",
                                       ""
                                   ],
      -                            "asctime": "2024-09-22 00:06:08,837",
      -                            "created": 1726956368.837842,
      +                            "asctime": "2024-09-22 12:01:39,848",
      +                            "created": 1726999299.8489242,
                                   "exc_info": null,
                                   "exc_text": null,
                                   "filename": "test.py",
      @@ -1722,8 +1712,8 @@
                                               "{ 'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': [ 'one', 2, 3, '4' ], 'dict': { '1': '1', '2': 2, '3': 'three', '4': '4' } }",
                                               ""
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,837",
      -                                    "created": 1726956368.8376148,
      +                                    "asctime": "2024-09-22 12:01:39,848",
      +                                    "created": 1726999299.8485436,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test.py",
      @@ -1733,15 +1723,15 @@
                                           "lineno": 22,
                                           "message": "Result (Instance data after changing uid): { 'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': [ 'one', 2, 3, '4' ], 'dict': { '1': '1', '2': 2, '3': 'three', '4': '4' } } ()",
                                           "module": "test",
      -                                    "msecs": 837.0,
      +                                    "msecs": 848.0,
                                           "msg": "Result (%s): %s (%s)",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 96.30870819091797,
      +                                    "relativeCreated": 97.19038009643555,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       },
                                       {
      @@ -1751,8 +1741,8 @@
                                               "{ 'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': [ 'one', 2, 3, '4' ], 'dict': { '1': '1', '2': 2, '3': 'three', '4': '4' } }",
                                               ""
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,837",
      -                                    "created": 1726956368.837725,
      +                                    "asctime": "2024-09-22 12:01:39,848",
      +                                    "created": 1726999299.8487282,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test.py",
      @@ -1762,41 +1752,41 @@
                                           "lineno": 26,
                                           "message": "Expectation (Instance data after changing uid): result = { 'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': [ 'one', 2, 3, '4' ], 'dict': { '1': '1', '2': 2, '3': 'three', '4': '4' } } ()",
                                           "module": "test",
      -                                    "msecs": 837.0,
      +                                    "msecs": 848.0,
                                           "msg": "Expectation (%s): result %s %s (%s)",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 96.41885757446289,
      +                                    "relativeCreated": 97.37491607666016,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       }
                                   ],
      -                            "msecs": 837.0,
      +                            "msecs": 848.0,
                                   "msg": "Instance data after changing uid is correct (Content %s and Type is %s).",
                                   "name": "__tLogger__",
                                   "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                            "process": 281640,
      +                            "process": 291252,
                                   "processName": "MainProcess",
      -                            "relativeCreated": 96.53592109680176,
      +                            "relativeCreated": 97.57089614868164,
                                   "stack_info": null,
      -                            "thread": 139910820048960,
      +                            "thread": 139667813142592,
                                   "threadName": "MainThread",
      -                            "time_consumption": 0.00011706352233886719
      +                            "time_consumption": 0.00019598007202148438
                               }
                           ],
      -                    "thread": 139910820048960,
      +                    "thread": 139667813142592,
                           "threadName": "MainThread",
      -                    "time_consumption": 0.004166126251220703,
      -                    "time_finished": "2024-09-22 00:06:08,837",
      -                    "time_start": "2024-09-22 00:06:08,833"
      +                    "time_consumption": 0.0036318302154541016,
      +                    "time_finished": "2024-09-22 12:01:39,848",
      +                    "time_start": "2024-09-22 12:01:39,845"
                       },
                       "caching.property_cache_json: Test get from source caused by increased data version (full init)": {
                           "args": null,
      -                    "asctime": "2024-09-22 00:06:08,823",
      -                    "created": 1726956368.8234994,
      +                    "asctime": "2024-09-22 12:01:39,834",
      +                    "created": 1726999299.8346317,
                           "exc_info": null,
                           "exc_text": null,
                           "filename": "__init__.py",
      @@ -1807,13 +1797,13 @@
                           "message": "caching.property_cache_json: Test get from source caused by increased data version (full init)",
                           "module": "__init__",
                           "moduleLogger": [],
      -                    "msecs": 823.0,
      +                    "msecs": 834.0,
                           "msg": "caching.property_cache_json: Test get from source caused by increased data version (full init)",
                           "name": "__tLogger__",
                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/report/__init__.py",
      -                    "process": 281640,
      +                    "process": 291252,
                           "processName": "MainProcess",
      -                    "relativeCreated": 82.19337463378906,
      +                    "relativeCreated": 83.27841758728027,
                           "stack_info": null,
                           "testcaseLogger": [
                               {
      @@ -1821,8 +1811,8 @@
                                       "property_cache_json",
                                       "True"
                                   ],
      -                            "asctime": "2024-09-22 00:06:08,824",
      -                            "created": 1726956368.8245249,
      +                            "asctime": "2024-09-22 12:01:39,835",
      +                            "created": 1726999299.8356025,
                                   "exc_info": null,
                                   "exc_text": null,
                                   "filename": "test_helpers.py",
      @@ -1835,8 +1825,8 @@
                                   "moduleLogger": [
                                       {
                                           "args": [],
      -                                    "asctime": "2024-09-22 00:06:08,823",
      -                                    "created": 1726956368.8236096,
      +                                    "asctime": "2024-09-22 12:01:39,834",
      +                                    "created": 1726999299.8347945,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test_helpers.py",
      @@ -1846,23 +1836,23 @@
                                           "lineno": 17,
                                           "message": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
                                           "module": "test_helpers",
      -                                    "msecs": 823.0,
      +                                    "msecs": 834.0,
                                           "msg": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 82.30352401733398,
      +                                    "relativeCreated": 83.44125747680664,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       },
                                       {
                                           "args": [
                                               "/home/dirk/my_repositories/unittest/caching/unittest/output_data/data_version_test_load_on_init.json"
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,823",
      -                                    "created": 1726956368.8237011,
      +                                    "asctime": "2024-09-22 12:01:39,834",
      +                                    "created": 1726999299.8348923,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test_helpers.py",
      @@ -1872,37 +1862,37 @@
                                           "lineno": 21,
                                           "message": "Initialising cached class with /home/dirk/my_repositories/unittest/caching/unittest/output_data/data_version_test_load_on_init.json as cache file.",
                                           "module": "test_helpers",
      -                                    "msecs": 823.0,
      +                                    "msecs": 834.0,
                                           "msg": "Initialising cached class with %s as cache file.",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 82.39507675170898,
      +                                    "relativeCreated": 83.53900909423828,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       }
                                   ],
      -                            "msecs": 824.0,
      +                            "msecs": 835.0,
                                   "msg": "Initialising %s (load_all_on_init=%s).",
                                   "name": "__tLogger__",
                                   "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
      -                            "process": 281640,
      +                            "process": 291252,
                                   "processName": "MainProcess",
      -                            "relativeCreated": 83.21881294250488,
      +                            "relativeCreated": 84.24925804138184,
                                   "stack_info": null,
      -                            "thread": 139910820048960,
      +                            "thread": 139667813142592,
                                   "threadName": "MainThread",
      -                            "time_consumption": 0.0008237361907958984
      +                            "time_consumption": 0.0007102489471435547
                               },
                               {
                                   "args": [
                                       "{'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': ['one', 2, 3, '4'], 'dict': {'1': '1', '2': 2, '3': 'three', '4': '4'}}",
                                       ""
                                   ],
      -                            "asctime": "2024-09-22 00:06:08,825",
      -                            "created": 1726956368.8258991,
      +                            "asctime": "2024-09-22 12:01:39,836",
      +                            "created": 1726999299.836869,
                                   "exc_info": null,
                                   "exc_text": null,
                                   "filename": "test.py",
      @@ -1919,8 +1909,8 @@
                                               "{ 'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': [ 'one', 2, 3, '4' ], 'dict': { '1': '1', '2': 2, '3': 'three', '4': '4' } }",
                                               ""
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,825",
      -                                    "created": 1726956368.8256755,
      +                                    "asctime": "2024-09-22 12:01:39,836",
      +                                    "created": 1726999299.8366292,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test.py",
      @@ -1930,15 +1920,15 @@
                                           "lineno": 22,
                                           "message": "Result (Instance data after increasing data_version): { 'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': [ 'one', 2, 3, '4' ], 'dict': { '1': '1', '2': 2, '3': 'three', '4': '4' } } ()",
                                           "module": "test",
      -                                    "msecs": 825.0,
      +                                    "msecs": 836.0,
                                           "msg": "Result (%s): %s (%s)",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 84.36942100524902,
      +                                    "relativeCreated": 85.27588844299316,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       },
                                       {
      @@ -1948,8 +1938,8 @@
                                               "{ 'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': [ 'one', 2, 3, '4' ], 'dict': { '1': '1', '2': 2, '3': 'three', '4': '4' } }",
                                               ""
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,825",
      -                                    "created": 1726956368.8257756,
      +                                    "asctime": "2024-09-22 12:01:39,836",
      +                                    "created": 1726999299.8367424,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test.py",
      @@ -1959,41 +1949,41 @@
                                           "lineno": 26,
                                           "message": "Expectation (Instance data after increasing data_version): result = { 'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': [ 'one', 2, 3, '4' ], 'dict': { '1': '1', '2': 2, '3': 'three', '4': '4' } } ()",
                                           "module": "test",
      -                                    "msecs": 825.0,
      +                                    "msecs": 836.0,
                                           "msg": "Expectation (%s): result %s %s (%s)",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 84.46955680847168,
      +                                    "relativeCreated": 85.3891372680664,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       }
                                   ],
      -                            "msecs": 825.0,
      +                            "msecs": 836.0,
                                   "msg": "Instance data after increasing data_version is correct (Content %s and Type is %s).",
                                   "name": "__tLogger__",
                                   "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                            "process": 281640,
      +                            "process": 291252,
                                   "processName": "MainProcess",
      -                            "relativeCreated": 84.59305763244629,
      +                            "relativeCreated": 85.51573753356934,
                                   "stack_info": null,
      -                            "thread": 139910820048960,
      +                            "thread": 139667813142592,
                                   "threadName": "MainThread",
      -                            "time_consumption": 0.00012350082397460938
      +                            "time_consumption": 0.0001266002655029297
                               }
                           ],
      -                    "thread": 139910820048960,
      +                    "thread": 139667813142592,
                           "threadName": "MainThread",
      -                    "time_consumption": 0.0023996829986572266,
      -                    "time_finished": "2024-09-22 00:06:08,825",
      -                    "time_start": "2024-09-22 00:06:08,823"
      +                    "time_consumption": 0.0022373199462890625,
      +                    "time_finished": "2024-09-22 12:01:39,836",
      +                    "time_start": "2024-09-22 12:01:39,834"
                       },
                       "caching.property_cache_json: Test get from source caused by increased data version (partially init)": {
                           "args": null,
      -                    "asctime": "2024-09-22 00:06:08,826",
      -                    "created": 1726956368.8260698,
      +                    "asctime": "2024-09-22 12:01:39,837",
      +                    "created": 1726999299.8370626,
                           "exc_info": null,
                           "exc_text": null,
                           "filename": "__init__.py",
      @@ -2004,13 +1994,13 @@
                           "message": "caching.property_cache_json: Test get from source caused by increased data version (partially init)",
                           "module": "__init__",
                           "moduleLogger": [],
      -                    "msecs": 826.0,
      +                    "msecs": 837.0,
                           "msg": "caching.property_cache_json: Test get from source caused by increased data version (partially init)",
                           "name": "__tLogger__",
                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/report/__init__.py",
      -                    "process": 281640,
      +                    "process": 291252,
                           "processName": "MainProcess",
      -                    "relativeCreated": 84.76376533508301,
      +                    "relativeCreated": 85.7093334197998,
                           "stack_info": null,
                           "testcaseLogger": [
                               {
      @@ -2018,8 +2008,8 @@
                                       "property_cache_json",
                                       "True"
                                   ],
      -                            "asctime": "2024-09-22 00:06:08,827",
      -                            "created": 1726956368.8270843,
      +                            "asctime": "2024-09-22 12:01:39,838",
      +                            "created": 1726999299.8381765,
                                   "exc_info": null,
                                   "exc_text": null,
                                   "filename": "test_helpers.py",
      @@ -2032,8 +2022,8 @@
                                   "moduleLogger": [
                                       {
                                           "args": [],
      -                                    "asctime": "2024-09-22 00:06:08,826",
      -                                    "created": 1726956368.8261795,
      +                                    "asctime": "2024-09-22 12:01:39,837",
      +                                    "created": 1726999299.8372402,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test_helpers.py",
      @@ -2043,23 +2033,23 @@
                                           "lineno": 17,
                                           "message": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
                                           "module": "test_helpers",
      -                                    "msecs": 826.0,
      +                                    "msecs": 837.0,
                                           "msg": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 84.87343788146973,
      +                                    "relativeCreated": 85.88695526123047,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       },
                                       {
                                           "args": [
                                               "/home/dirk/my_repositories/unittest/caching/unittest/output_data/data_version_test_no_load_on_init.json"
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,826",
      -                                    "created": 1726956368.8262663,
      +                                    "asctime": "2024-09-22 12:01:39,837",
      +                                    "created": 1726999299.8373528,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test_helpers.py",
      @@ -2069,37 +2059,37 @@
                                           "lineno": 21,
                                           "message": "Initialising cached class with /home/dirk/my_repositories/unittest/caching/unittest/output_data/data_version_test_no_load_on_init.json as cache file.",
                                           "module": "test_helpers",
      -                                    "msecs": 826.0,
      +                                    "msecs": 837.0,
                                           "msg": "Initialising cached class with %s as cache file.",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 84.9602222442627,
      +                                    "relativeCreated": 85.9994888305664,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       }
                                   ],
      -                            "msecs": 827.0,
      +                            "msecs": 838.0,
                                   "msg": "Initialising %s (load_all_on_init=%s).",
                                   "name": "__tLogger__",
                                   "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
      -                            "process": 281640,
      +                            "process": 291252,
                                   "processName": "MainProcess",
      -                            "relativeCreated": 85.77823638916016,
      +                            "relativeCreated": 86.8232250213623,
                                   "stack_info": null,
      -                            "thread": 139910820048960,
      +                            "thread": 139667813142592,
                                   "threadName": "MainThread",
      -                            "time_consumption": 0.0008180141448974609
      +                            "time_consumption": 0.0008237361907958984
                               },
                               {
                                   "args": [
                                       "{'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': ['one', 2, 3, '4'], 'dict': {'1': '1', '2': 2, '3': 'three', '4': '4'}}",
                                       ""
                                   ],
      -                            "asctime": "2024-09-22 00:06:08,830",
      -                            "created": 1726956368.830614,
      +                            "asctime": "2024-09-22 12:01:39,841",
      +                            "created": 1726999299.841378,
                                   "exc_info": null,
                                   "exc_text": null,
                                   "filename": "test.py",
      @@ -2116,8 +2106,8 @@
                                               "{ 'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': [ 'one', 2, 3, '4' ], 'dict': { '1': '1', '2': 2, '3': 'three', '4': '4' } }",
                                               ""
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,830",
      -                                    "created": 1726956368.8303661,
      +                                    "asctime": "2024-09-22 12:01:39,840",
      +                                    "created": 1726999299.840947,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test.py",
      @@ -2127,15 +2117,15 @@
                                           "lineno": 22,
                                           "message": "Result (Instance data after increasing data_version): { 'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': [ 'one', 2, 3, '4' ], 'dict': { '1': '1', '2': 2, '3': 'three', '4': '4' } } ()",
                                           "module": "test",
      -                                    "msecs": 830.0,
      +                                    "msecs": 840.0,
                                           "msg": "Result (%s): %s (%s)",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 89.06006813049316,
      +                                    "relativeCreated": 89.59364891052246,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       },
                                       {
      @@ -2145,8 +2135,8 @@
                                               "{ 'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': [ 'one', 2, 3, '4' ], 'dict': { '1': '1', '2': 2, '3': 'three', '4': '4' } }",
                                               ""
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,830",
      -                                    "created": 1726956368.830491,
      +                                    "asctime": "2024-09-22 12:01:39,841",
      +                                    "created": 1726999299.8411405,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test.py",
      @@ -2156,41 +2146,41 @@
                                           "lineno": 26,
                                           "message": "Expectation (Instance data after increasing data_version): result = { 'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': [ 'one', 2, 3, '4' ], 'dict': { '1': '1', '2': 2, '3': 'three', '4': '4' } } ()",
                                           "module": "test",
      -                                    "msecs": 830.0,
      +                                    "msecs": 841.0,
                                           "msg": "Expectation (%s): result %s %s (%s)",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 89.18499946594238,
      +                                    "relativeCreated": 89.78724479675293,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       }
                                   ],
      -                            "msecs": 830.0,
      +                            "msecs": 841.0,
                                   "msg": "Instance data after increasing data_version is correct (Content %s and Type is %s).",
                                   "name": "__tLogger__",
                                   "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                            "process": 281640,
      +                            "process": 291252,
                                   "processName": "MainProcess",
      -                            "relativeCreated": 89.30802345275879,
      +                            "relativeCreated": 90.02470970153809,
                                   "stack_info": null,
      -                            "thread": 139910820048960,
      +                            "thread": 139667813142592,
                                   "threadName": "MainThread",
      -                            "time_consumption": 0.00012302398681640625
      +                            "time_consumption": 0.00023746490478515625
                               }
                           ],
      -                    "thread": 139910820048960,
      +                    "thread": 139667813142592,
                           "threadName": "MainThread",
      -                    "time_consumption": 0.004544258117675781,
      -                    "time_finished": "2024-09-22 00:06:08,830",
      -                    "time_start": "2024-09-22 00:06:08,826"
      +                    "time_consumption": 0.004315376281738281,
      +                    "time_finished": "2024-09-22 12:01:39,841",
      +                    "time_start": "2024-09-22 12:01:39,837"
                       },
                       "caching.property_cache_json: Test internal key usage": {
                           "args": null,
      -                    "asctime": "2024-09-22 00:06:08,838",
      -                    "created": 1726956368.8387756,
      +                    "asctime": "2024-09-22 12:01:39,850",
      +                    "created": 1726999299.8503225,
                           "exc_info": null,
                           "exc_text": null,
                           "filename": "__init__.py",
      @@ -2201,13 +2191,13 @@
                           "message": "caching.property_cache_json: Test internal key usage",
                           "module": "__init__",
                           "moduleLogger": [],
      -                    "msecs": 838.0,
      +                    "msecs": 850.0,
                           "msg": "caching.property_cache_json: Test internal key usage",
                           "name": "__tLogger__",
                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/report/__init__.py",
      -                    "process": 281640,
      +                    "process": 291252,
                           "processName": "MainProcess",
      -                    "relativeCreated": 97.46956825256348,
      +                    "relativeCreated": 98.9692211151123,
                           "stack_info": null,
                           "testcaseLogger": [
                               {
      @@ -2215,8 +2205,8 @@
                                       "property_cache_json",
                                       "True"
                                   ],
      -                            "asctime": "2024-09-22 00:06:08,839",
      -                            "created": 1726956368.8397186,
      +                            "asctime": "2024-09-22 12:01:39,851",
      +                            "created": 1726999299.851764,
                                   "exc_info": null,
                                   "exc_text": null,
                                   "filename": "test_helpers.py",
      @@ -2229,8 +2219,8 @@
                                   "moduleLogger": [
                                       {
                                           "args": [],
      -                                    "asctime": "2024-09-22 00:06:08,838",
      -                                    "created": 1726956368.8389041,
      +                                    "asctime": "2024-09-22 12:01:39,850",
      +                                    "created": 1726999299.850567,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test_helpers.py",
      @@ -2240,23 +2230,23 @@
                                           "lineno": 17,
                                           "message": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
                                           "module": "test_helpers",
      -                                    "msecs": 838.0,
      +                                    "msecs": 850.0,
                                           "msg": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 97.59807586669922,
      +                                    "relativeCreated": 99.21383857727051,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       },
                                       {
                                           "args": [
                                               "/home/dirk/my_repositories/unittest/caching/unittest/output_data/internal_keys_test.json"
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,839",
      -                                    "created": 1726956368.8390048,
      +                                    "asctime": "2024-09-22 12:01:39,850",
      +                                    "created": 1726999299.8507779,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test_helpers.py",
      @@ -2266,36 +2256,36 @@
                                           "lineno": 21,
                                           "message": "Initialising cached class with /home/dirk/my_repositories/unittest/caching/unittest/output_data/internal_keys_test.json as cache file.",
                                           "module": "test_helpers",
      -                                    "msecs": 839.0,
      +                                    "msecs": 850.0,
                                           "msg": "Initialising cached class with %s as cache file.",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 97.69868850708008,
      +                                    "relativeCreated": 99.42460060119629,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       }
                                   ],
      -                            "msecs": 839.0,
      +                            "msecs": 851.0,
                                   "msg": "Initialising %s (load_all_on_init=%s).",
                                   "name": "__tLogger__",
                                   "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
      -                            "process": 281640,
      +                            "process": 291252,
                                   "processName": "MainProcess",
      -                            "relativeCreated": 98.41251373291016,
      +                            "relativeCreated": 100.41069984436035,
                                   "stack_info": null,
      -                            "thread": 139910820048960,
      +                            "thread": 139667813142592,
                                   "threadName": "MainThread",
      -                            "time_consumption": 0.0007138252258300781
      +                            "time_consumption": 0.0009860992431640625
                               },
                               {
                                   "args": [
                                       "property_cache_json"
                                   ],
      -                            "asctime": "2024-09-22 00:06:08,840",
      -                            "created": 1726956368.8400452,
      +                            "asctime": "2024-09-22 12:01:39,852",
      +                            "created": 1726999299.8525712,
                                   "exc_info": null,
                                   "exc_text": null,
                                   "filename": "test_internal_keys.py",
      @@ -2310,8 +2300,8 @@
                                           "args": [
                                               "{'__property_cache_data_version_': 'no second data version', '__property_cache_uid_': 'no second uid', '_property_cache_data_version_': 'no data version', '_property_cache_uid_': 'no uid'}"
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,839",
      -                                    "created": 1726956368.8399813,
      +                                    "asctime": "2024-09-22 12:01:39,852",
      +                                    "created": 1726999299.8524306,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test_internal_keys.py",
      @@ -2321,37 +2311,37 @@
                                           "lineno": 20,
                                           "message": "Using storage object of cache class for comparison: {'__property_cache_data_version_': 'no second data version', '__property_cache_uid_': 'no second uid', '_property_cache_data_version_': 'no data version', '_property_cache_uid_': 'no uid'}",
                                           "module": "test_internal_keys",
      -                                    "msecs": 839.0,
      +                                    "msecs": 852.0,
                                           "msg": "Using storage object of cache class for comparison: %s",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_internal_keys.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 98.67525100708008,
      +                                    "relativeCreated": 101.07731819152832,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       }
                                   ],
      -                            "msecs": 840.0,
      +                            "msecs": 852.0,
                                   "msg": "Extracting storage object from %s for comparison.",
                                   "name": "__tLogger__",
                                   "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_internal_keys.py",
      -                            "process": 281640,
      +                            "process": 291252,
                                   "processName": "MainProcess",
      -                            "relativeCreated": 98.7391471862793,
      +                            "relativeCreated": 101.21798515319824,
                                   "stack_info": null,
      -                            "thread": 139910820048960,
      +                            "thread": 139667813142592,
                                   "threadName": "MainThread",
      -                            "time_consumption": 6.389617919921875e-05
      +                            "time_consumption": 0.00014066696166992188
                               },
                               {
                                   "args": [
                                       "{'__property_cache_data_version_': 'no second data version', '__property_cache_uid_': 'no second uid', '_property_cache_data_version_': 'no data version', '_property_cache_uid_': 'no uid'}",
                                       ""
                                   ],
      -                            "asctime": "2024-09-22 00:06:08,840",
      -                            "created": 1726956368.8402805,
      +                            "asctime": "2024-09-22 12:01:39,852",
      +                            "created": 1726999299.8529987,
                                   "exc_info": null,
                                   "exc_text": null,
                                   "filename": "test.py",
      @@ -2368,8 +2358,8 @@
                                               "{ '__property_cache_data_version_': 'no second data version', '__property_cache_uid_': 'no second uid', '_property_cache_data_version_': 'no data version', '_property_cache_uid_': 'no uid' }",
                                               ""
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,840",
      -                                    "created": 1726956368.8401444,
      +                                    "asctime": "2024-09-22 12:01:39,852",
      +                                    "created": 1726999299.8527586,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test.py",
      @@ -2379,15 +2369,15 @@
                                           "lineno": 22,
                                           "message": "Result (Cache): { '__property_cache_data_version_': 'no second data version', '__property_cache_uid_': 'no second uid', '_property_cache_data_version_': 'no data version', '_property_cache_uid_': 'no uid' } ()",
                                           "module": "test",
      -                                    "msecs": 840.0,
      +                                    "msecs": 852.0,
                                           "msg": "Result (%s): %s (%s)",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 98.83832931518555,
      +                                    "relativeCreated": 101.40538215637207,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       },
                                       {
      @@ -2397,8 +2387,8 @@
                                               "{ '_property_cache_uid_': 'no uid', '__property_cache_uid_': 'no second uid', '_property_cache_data_version_': 'no data version', '__property_cache_data_version_': 'no second data version' }",
                                               ""
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,840",
      -                                    "created": 1726956368.8402085,
      +                                    "asctime": "2024-09-22 12:01:39,852",
      +                                    "created": 1726999299.8528724,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test.py",
      @@ -2408,37 +2398,37 @@
                                           "lineno": 26,
                                           "message": "Expectation (Cache): result = { '_property_cache_uid_': 'no uid', '__property_cache_uid_': 'no second uid', '_property_cache_data_version_': 'no data version', '__property_cache_data_version_': 'no second data version' } ()",
                                           "module": "test",
      -                                    "msecs": 840.0,
      +                                    "msecs": 852.0,
                                           "msg": "Expectation (%s): result %s %s (%s)",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 98.90246391296387,
      +                                    "relativeCreated": 101.51910781860352,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       }
                                   ],
      -                            "msecs": 840.0,
      +                            "msecs": 852.0,
                                   "msg": "Cache is correct (Content %s and Type is %s).",
                                   "name": "__tLogger__",
                                   "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                            "process": 281640,
      +                            "process": 291252,
                                   "processName": "MainProcess",
      -                            "relativeCreated": 98.97446632385254,
      +                            "relativeCreated": 101.64546966552734,
                                   "stack_info": null,
      -                            "thread": 139910820048960,
      +                            "thread": 139667813142592,
                                   "threadName": "MainThread",
      -                            "time_consumption": 7.200241088867188e-05
      +                            "time_consumption": 0.00012636184692382812
                               },
                               {
                                   "args": [
                                       "5",
                                       ""
                                   ],
      -                            "asctime": "2024-09-22 00:06:08,840",
      -                            "created": 1726956368.8404741,
      +                            "asctime": "2024-09-22 12:01:39,853",
      +                            "created": 1726999299.8532274,
                                   "exc_info": null,
                                   "exc_text": null,
                                   "filename": "test.py",
      @@ -2455,8 +2445,8 @@
                                               "5",
                                               ""
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,840",
      -                                    "created": 1726956368.8403742,
      +                                    "asctime": "2024-09-22 12:01:39,853",
      +                                    "created": 1726999299.8531125,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test.py",
      @@ -2466,15 +2456,15 @@
                                           "lineno": 22,
                                           "message": "Result (Keyfilter returnvalue for 5 ()): 5 ()",
                                           "module": "test",
      -                                    "msecs": 840.0,
      +                                    "msecs": 853.0,
                                           "msg": "Result (%s): %s (%s)",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 99.06816482543945,
      +                                    "relativeCreated": 101.75919532775879,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       },
                                       {
      @@ -2484,8 +2474,8 @@
                                               "5",
                                               ""
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,840",
      -                                    "created": 1726956368.8404257,
      +                                    "asctime": "2024-09-22 12:01:39,853",
      +                                    "created": 1726999299.8531725,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test.py",
      @@ -2495,41 +2485,41 @@
                                           "lineno": 26,
                                           "message": "Expectation (Keyfilter returnvalue for 5 ()): result = 5 ()",
                                           "module": "test",
      -                                    "msecs": 840.0,
      +                                    "msecs": 853.0,
                                           "msg": "Expectation (%s): result %s %s (%s)",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 99.11966323852539,
      +                                    "relativeCreated": 101.81927680969238,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       }
                                   ],
      -                            "msecs": 840.0,
      +                            "msecs": 853.0,
                                   "msg": "Keyfilter returnvalue for 5 () is correct (Content %s and Type is %s).",
                                   "name": "__tLogger__",
                                   "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                            "process": 281640,
      +                            "process": 291252,
                                   "processName": "MainProcess",
      -                            "relativeCreated": 99.16806221008301,
      +                            "relativeCreated": 101.87411308288574,
                                   "stack_info": null,
      -                            "thread": 139910820048960,
      +                            "thread": 139667813142592,
                                   "threadName": "MainThread",
      -                            "time_consumption": 4.839897155761719e-05
      +                            "time_consumption": 5.4836273193359375e-05
                               }
                           ],
      -                    "thread": 139910820048960,
      +                    "thread": 139667813142592,
                           "threadName": "MainThread",
      -                    "time_consumption": 0.0016984939575195312,
      -                    "time_finished": "2024-09-22 00:06:08,840",
      -                    "time_start": "2024-09-22 00:06:08,838"
      +                    "time_consumption": 0.0029048919677734375,
      +                    "time_finished": "2024-09-22 12:01:39,853",
      +                    "time_start": "2024-09-22 12:01:39,850"
                       },
                       "caching.property_cache_json: Test partially initialisation of JSON-Cache-Object": {
                           "args": null,
      -                    "asctime": "2024-09-22 00:06:08,816",
      -                    "created": 1726956368.8167036,
      +                    "asctime": "2024-09-22 12:01:39,827",
      +                    "created": 1726999299.8279035,
                           "exc_info": null,
                           "exc_text": null,
                           "filename": "__init__.py",
      @@ -2540,13 +2530,13 @@
                           "message": "caching.property_cache_json: Test partially initialisation of JSON-Cache-Object",
                           "module": "__init__",
                           "moduleLogger": [],
      -                    "msecs": 816.0,
      +                    "msecs": 827.0,
                           "msg": "caching.property_cache_json: Test partially initialisation of JSON-Cache-Object",
                           "name": "__tLogger__",
                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/report/__init__.py",
      -                    "process": 281640,
      +                    "process": 291252,
                           "processName": "MainProcess",
      -                    "relativeCreated": 75.39749145507812,
      +                    "relativeCreated": 76.55024528503418,
                           "stack_info": null,
                           "testcaseLogger": [
                               {
      @@ -2554,8 +2544,8 @@
                                       "property_cache_json",
                                       "False"
                                   ],
      -                            "asctime": "2024-09-22 00:06:08,817",
      -                            "created": 1726956368.8171895,
      +                            "asctime": "2024-09-22 12:01:39,828",
      +                            "created": 1726999299.8284273,
                                   "exc_info": null,
                                   "exc_text": null,
                                   "filename": "test_helpers.py",
      @@ -2568,8 +2558,8 @@
                                   "moduleLogger": [
                                       {
                                           "args": [],
      -                                    "asctime": "2024-09-22 00:06:08,816",
      -                                    "created": 1726956368.8168185,
      +                                    "asctime": "2024-09-22 12:01:39,828",
      +                                    "created": 1726999299.8280785,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test_helpers.py",
      @@ -2579,23 +2569,23 @@
                                           "lineno": 17,
                                           "message": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
                                           "module": "test_helpers",
      -                                    "msecs": 816.0,
      +                                    "msecs": 828.0,
                                           "msg": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 75.51240921020508,
      +                                    "relativeCreated": 76.72524452209473,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       },
                                       {
                                           "args": [
                                               "/home/dirk/my_repositories/unittest/caching/unittest/output_data/no_load_on_init.json"
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,816",
      -                                    "created": 1726956368.816915,
      +                                    "asctime": "2024-09-22 12:01:39,828",
      +                                    "created": 1726999299.8281946,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test_helpers.py",
      @@ -2605,34 +2595,34 @@
                                           "lineno": 21,
                                           "message": "Initialising cached class with /home/dirk/my_repositories/unittest/caching/unittest/output_data/no_load_on_init.json as cache file.",
                                           "module": "test_helpers",
      -                                    "msecs": 816.0,
      +                                    "msecs": 828.0,
                                           "msg": "Initialising cached class with %s as cache file.",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 75.60896873474121,
      +                                    "relativeCreated": 76.84135437011719,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       }
                                   ],
      -                            "msecs": 817.0,
      +                            "msecs": 828.0,
                                   "msg": "Initialising %s (load_all_on_init=%s).",
                                   "name": "__tLogger__",
                                   "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
      -                            "process": 281640,
      +                            "process": 291252,
                                   "processName": "MainProcess",
      -                            "relativeCreated": 75.88338851928711,
      +                            "relativeCreated": 77.07405090332031,
                                   "stack_info": null,
      -                            "thread": 139910820048960,
      +                            "thread": 139667813142592,
                                   "threadName": "MainThread",
      -                            "time_consumption": 0.00027441978454589844
      +                            "time_consumption": 0.000232696533203125
                               },
                               {
                                   "args": [],
      -                            "asctime": "2024-09-22 00:06:08,818",
      -                            "created": 1726956368.8188567,
      +                            "asctime": "2024-09-22 12:01:39,830",
      +                            "created": 1726999299.8300378,
                                   "exc_info": null,
                                   "exc_text": null,
                                   "filename": "test_no_load_on_init.py",
      @@ -2643,15 +2633,15 @@
                                   "message": "Partially initialising cache object by requesting some information.",
                                   "module": "test_no_load_on_init",
                                   "moduleLogger": [],
      -                            "msecs": 818.0,
      +                            "msecs": 830.0,
                                   "msg": "Partially initialising cache object by requesting some information.",
                                   "name": "__tLogger__",
                                   "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_no_load_on_init.py",
      -                            "process": 281640,
      +                            "process": 291252,
                                   "processName": "MainProcess",
      -                            "relativeCreated": 77.55064964294434,
      +                            "relativeCreated": 78.68456840515137,
                                   "stack_info": null,
      -                            "thread": 139910820048960,
      +                            "thread": 139667813142592,
                                   "threadName": "MainThread",
                                   "time_consumption": 0.0
                               },
      @@ -2659,8 +2649,8 @@
                                   "args": [
                                       "property_cache_json"
                                   ],
      -                            "asctime": "2024-09-22 00:06:08,819",
      -                            "created": 1726956368.8191514,
      +                            "asctime": "2024-09-22 12:01:39,830",
      +                            "created": 1726999299.8303387,
                                   "exc_info": null,
                                   "exc_text": null,
                                   "filename": "test_no_load_on_init.py",
      @@ -2675,8 +2665,8 @@
                                           "args": [
                                               "{'integer': 17, 'str': 'string', 'unicode': 'unicode'}"
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,819",
      -                                    "created": 1726956368.8190837,
      +                                    "asctime": "2024-09-22 12:01:39,830",
      +                                    "created": 1726999299.8302698,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test_no_load_on_init.py",
      @@ -2686,37 +2676,37 @@
                                           "lineno": 23,
                                           "message": "Using storage object of cache class for comparison: {'integer': 17, 'str': 'string', 'unicode': 'unicode'}",
                                           "module": "test_no_load_on_init",
      -                                    "msecs": 819.0,
      +                                    "msecs": 830.0,
                                           "msg": "Using storage object of cache class for comparison: %s",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_no_load_on_init.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 77.77762413024902,
      +                                    "relativeCreated": 78.91654968261719,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       }
                                   ],
      -                            "msecs": 819.0,
      +                            "msecs": 830.0,
                                   "msg": "Extracting storage object from %s for comparison.",
                                   "name": "__tLogger__",
                                   "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_no_load_on_init.py",
      -                            "process": 281640,
      +                            "process": 291252,
                                   "processName": "MainProcess",
      -                            "relativeCreated": 77.84533500671387,
      +                            "relativeCreated": 78.98545265197754,
                                   "stack_info": null,
      -                            "thread": 139910820048960,
      +                            "thread": 139667813142592,
                                   "threadName": "MainThread",
      -                            "time_consumption": 6.771087646484375e-05
      +                            "time_consumption": 6.890296936035156e-05
                               },
                               {
                                   "args": [
                                       "{'integer': 17, 'str': 'string', 'unicode': 'unicode'}",
                                       ""
                                   ],
      -                            "asctime": "2024-09-22 00:06:08,819",
      -                            "created": 1726956368.8194046,
      +                            "asctime": "2024-09-22 12:01:39,830",
      +                            "created": 1726999299.8305895,
                                   "exc_info": null,
                                   "exc_text": null,
                                   "filename": "test.py",
      @@ -2733,8 +2723,8 @@
                                               "{ 'integer': 17, 'str': 'string', 'unicode': 'unicode' }",
                                               ""
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,819",
      -                                    "created": 1726956368.819259,
      +                                    "asctime": "2024-09-22 12:01:39,830",
      +                                    "created": 1726999299.8304498,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test.py",
      @@ -2744,15 +2734,15 @@
                                           "lineno": 22,
                                           "message": "Result (Cache object): { 'integer': 17, 'str': 'string', 'unicode': 'unicode' } ()",
                                           "module": "test",
      -                                    "msecs": 819.0,
      +                                    "msecs": 830.0,
                                           "msg": "Result (%s): %s (%s)",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 77.95286178588867,
      +                                    "relativeCreated": 79.09655570983887,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       },
                                       {
      @@ -2762,8 +2752,8 @@
                                               "{ 'str': 'string', 'unicode': 'unicode', 'integer': 17 }",
                                               ""
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,819",
      -                                    "created": 1726956368.8193347,
      +                                    "asctime": "2024-09-22 12:01:39,830",
      +                                    "created": 1726999299.8305173,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test.py",
      @@ -2773,41 +2763,41 @@
                                           "lineno": 26,
                                           "message": "Expectation (Cache object): result = { 'str': 'string', 'unicode': 'unicode', 'integer': 17 } ()",
                                           "module": "test",
      -                                    "msecs": 819.0,
      +                                    "msecs": 830.0,
                                           "msg": "Expectation (%s): result %s %s (%s)",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 78.02867889404297,
      +                                    "relativeCreated": 79.16402816772461,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       }
                                   ],
      -                            "msecs": 819.0,
      +                            "msecs": 830.0,
                                   "msg": "Cache object is correct (Content %s and Type is %s).",
                                   "name": "__tLogger__",
                                   "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                            "process": 281640,
      +                            "process": 291252,
                                   "processName": "MainProcess",
      -                            "relativeCreated": 78.09853553771973,
      +                            "relativeCreated": 79.23626899719238,
                                   "stack_info": null,
      -                            "thread": 139910820048960,
      +                            "thread": 139667813142592,
                                   "threadName": "MainThread",
      -                            "time_consumption": 6.985664367675781e-05
      +                            "time_consumption": 7.224082946777344e-05
                               }
                           ],
      -                    "thread": 139910820048960,
      +                    "thread": 139667813142592,
                           "threadName": "MainThread",
      -                    "time_consumption": 0.0027010440826416016,
      -                    "time_finished": "2024-09-22 00:06:08,819",
      -                    "time_start": "2024-09-22 00:06:08,816"
      +                    "time_consumption": 0.002686023712158203,
      +                    "time_finished": "2024-09-22 12:01:39,830",
      +                    "time_start": "2024-09-22 12:01:39,827"
                       },
                       "caching.property_cache_pickle: Test cached data (full init)": {
                           "args": null,
      -                    "asctime": "2024-09-22 00:06:08,844",
      -                    "created": 1726956368.8442352,
      +                    "asctime": "2024-09-22 12:01:39,856",
      +                    "created": 1726999299.8566031,
                           "exc_info": null,
                           "exc_text": null,
                           "filename": "__init__.py",
      @@ -2818,13 +2808,13 @@
                           "message": "caching.property_cache_pickle: Test cached data (full init)",
                           "module": "__init__",
                           "moduleLogger": [],
      -                    "msecs": 844.0,
      +                    "msecs": 856.0,
                           "msg": "caching.property_cache_pickle: Test cached data (full init)",
                           "name": "__tLogger__",
                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/report/__init__.py",
      -                    "process": 281640,
      +                    "process": 291252,
                           "processName": "MainProcess",
      -                    "relativeCreated": 102.92911529541016,
      +                    "relativeCreated": 105.24988174438477,
                           "stack_info": null,
                           "testcaseLogger": [
                               {
      @@ -2832,8 +2822,8 @@
                                       "property_cache_pickle",
                                       "True"
                                   ],
      -                            "asctime": "2024-09-22 00:06:08,845",
      -                            "created": 1726956368.8451443,
      +                            "asctime": "2024-09-22 12:01:39,857",
      +                            "created": 1726999299.857356,
                                   "exc_info": null,
                                   "exc_text": null,
                                   "filename": "test_helpers.py",
      @@ -2846,8 +2836,8 @@
                                   "moduleLogger": [
                                       {
                                           "args": [],
      -                                    "asctime": "2024-09-22 00:06:08,844",
      -                                    "created": 1726956368.8443372,
      +                                    "asctime": "2024-09-22 12:01:39,856",
      +                                    "created": 1726999299.856716,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test_helpers.py",
      @@ -2857,23 +2847,23 @@
                                           "lineno": 17,
                                           "message": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
                                           "module": "test_helpers",
      -                                    "msecs": 844.0,
      +                                    "msecs": 856.0,
                                           "msg": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 103.03115844726562,
      +                                    "relativeCreated": 105.3626537322998,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       },
                                       {
                                           "args": [
                                               "/home/dirk/my_repositories/unittest/caching/unittest/output_data/cache_data_test_load_on_init.pkl"
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,844",
      -                                    "created": 1726956368.844436,
      +                                    "asctime": "2024-09-22 12:01:39,856",
      +                                    "created": 1726999299.8568048,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test_helpers.py",
      @@ -2883,34 +2873,34 @@
                                           "lineno": 21,
                                           "message": "Initialising cached class with /home/dirk/my_repositories/unittest/caching/unittest/output_data/cache_data_test_load_on_init.pkl as cache file.",
                                           "module": "test_helpers",
      -                                    "msecs": 844.0,
      +                                    "msecs": 856.0,
                                           "msg": "Initialising cached class with %s as cache file.",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 103.12986373901367,
      +                                    "relativeCreated": 105.45158386230469,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       }
                                   ],
      -                            "msecs": 845.0,
      +                            "msecs": 857.0,
                                   "msg": "Initialising %s (load_all_on_init=%s).",
                                   "name": "__tLogger__",
                                   "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
      -                            "process": 281640,
      +                            "process": 291252,
                                   "processName": "MainProcess",
      -                            "relativeCreated": 103.83820533752441,
      +                            "relativeCreated": 106.0028076171875,
                                   "stack_info": null,
      -                            "thread": 139910820048960,
      +                            "thread": 139667813142592,
                                   "threadName": "MainThread",
      -                            "time_consumption": 0.0007083415985107422
      +                            "time_consumption": 0.0005512237548828125
                               },
                               {
                                   "args": [],
      -                            "asctime": "2024-09-22 00:06:08,845",
      -                            "created": 1726956368.845552,
      +                            "asctime": "2024-09-22 12:01:39,857",
      +                            "created": 1726999299.8575716,
                                   "exc_info": null,
                                   "exc_text": null,
                                   "filename": "test_cached_data.py",
      @@ -2921,15 +2911,15 @@
                                   "message": "Collecting data from cache instance.",
                                   "module": "test_cached_data",
                                   "moduleLogger": [],
      -                            "msecs": 845.0,
      +                            "msecs": 857.0,
                                   "msg": "Collecting data from cache instance.",
                                   "name": "__tLogger__",
                                   "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_cached_data.py",
      -                            "process": 281640,
      +                            "process": 291252,
                                   "processName": "MainProcess",
      -                            "relativeCreated": 104.24590110778809,
      +                            "relativeCreated": 106.21833801269531,
                                   "stack_info": null,
      -                            "thread": 139910820048960,
      +                            "thread": 139667813142592,
                                   "threadName": "MainThread",
                                   "time_consumption": 0.0
                               },
      @@ -2938,8 +2928,8 @@
                                       "{'str': 'string', 'unicode': 'unicode', 'integer': 17, 'float': 3.14159, 'list': [1, 'two', '3', 4], 'dict': {'1': 1, '2': 'two', '3': '3', '4': 4}, 'uncached': 'uncached_data_of_class'}",
                                       ""
                                   ],
      -                            "asctime": "2024-09-22 00:06:08,845",
      -                            "created": 1726956368.8458784,
      +                            "asctime": "2024-09-22 12:01:39,857",
      +                            "created": 1726999299.8579214,
                                   "exc_info": null,
                                   "exc_text": null,
                                   "filename": "test.py",
      @@ -2956,8 +2946,8 @@
                                               "{ 'str': 'string', 'unicode': 'unicode', 'integer': 17, 'float': 3.14159, 'list': [ 1, 'two', '3', 4 ], 'dict': { '1': 1, '2': 'two', '3': '3', '4': 4 }, 'uncached': 'uncached_data_of_class' }",
                                               ""
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,845",
      -                                    "created": 1726956368.845675,
      +                                    "asctime": "2024-09-22 12:01:39,857",
      +                                    "created": 1726999299.8577013,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test.py",
      @@ -2967,15 +2957,15 @@
                                           "lineno": 22,
                                           "message": "Result (Cached data): { 'str': 'string', 'unicode': 'unicode', 'integer': 17, 'float': 3.14159, 'list': [ 1, 'two', '3', 4 ], 'dict': { '1': 1, '2': 'two', '3': '3', '4': 4 }, 'uncached': 'uncached_data_of_class' } ()",
                                           "module": "test",
      -                                    "msecs": 845.0,
      +                                    "msecs": 857.0,
                                           "msg": "Result (%s): %s (%s)",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 104.36892509460449,
      +                                    "relativeCreated": 106.34803771972656,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       },
                                       {
      @@ -2985,8 +2975,8 @@
                                               "{ 'str': 'string', 'unicode': 'unicode', 'integer': 17, 'float': 3.14159, 'list': [ 1, 'two', '3', 4 ], 'dict': { '1': 1, '2': 'two', '3': '3', '4': 4 }, 'uncached': 'uncached_data_of_class' }",
                                               ""
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,845",
      -                                    "created": 1726956368.8457594,
      +                                    "asctime": "2024-09-22 12:01:39,857",
      +                                    "created": 1726999299.857793,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test.py",
      @@ -2996,41 +2986,41 @@
                                           "lineno": 26,
                                           "message": "Expectation (Cached data): result = { 'str': 'string', 'unicode': 'unicode', 'integer': 17, 'float': 3.14159, 'list': [ 1, 'two', '3', 4 ], 'dict': { '1': 1, '2': 'two', '3': '3', '4': 4 }, 'uncached': 'uncached_data_of_class' } ()",
                                           "module": "test",
      -                                    "msecs": 845.0,
      +                                    "msecs": 857.0,
                                           "msg": "Expectation (%s): result %s %s (%s)",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 104.45332527160645,
      +                                    "relativeCreated": 106.43982887268066,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       }
                                   ],
      -                            "msecs": 845.0,
      +                            "msecs": 857.0,
                                   "msg": "Cached data is correct (Content %s and Type is %s).",
                                   "name": "__tLogger__",
                                   "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                            "process": 281640,
      +                            "process": 291252,
                                   "processName": "MainProcess",
      -                            "relativeCreated": 104.57229614257812,
      +                            "relativeCreated": 106.5680980682373,
                                   "stack_info": null,
      -                            "thread": 139910820048960,
      +                            "thread": 139667813142592,
                                   "threadName": "MainThread",
      -                            "time_consumption": 0.00011897087097167969
      +                            "time_consumption": 0.00012826919555664062
                               }
                           ],
      -                    "thread": 139910820048960,
      +                    "thread": 139667813142592,
                           "threadName": "MainThread",
      -                    "time_consumption": 0.0016431808471679688,
      -                    "time_finished": "2024-09-22 00:06:08,845",
      -                    "time_start": "2024-09-22 00:06:08,844"
      +                    "time_consumption": 0.001318216323852539,
      +                    "time_finished": "2024-09-22 12:01:39,857",
      +                    "time_start": "2024-09-22 12:01:39,856"
                       },
                       "caching.property_cache_pickle: Test cached data (partially init)": {
                           "args": null,
      -                    "asctime": "2024-09-22 00:06:08,846",
      -                    "created": 1726956368.846038,
      +                    "asctime": "2024-09-22 12:01:39,858",
      +                    "created": 1726999299.8581398,
                           "exc_info": null,
                           "exc_text": null,
                           "filename": "__init__.py",
      @@ -3041,13 +3031,13 @@
                           "message": "caching.property_cache_pickle: Test cached data (partially init)",
                           "module": "__init__",
                           "moduleLogger": [],
      -                    "msecs": 846.0,
      +                    "msecs": 858.0,
                           "msg": "caching.property_cache_pickle: Test cached data (partially init)",
                           "name": "__tLogger__",
                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/report/__init__.py",
      -                    "process": 281640,
      +                    "process": 291252,
                           "processName": "MainProcess",
      -                    "relativeCreated": 104.73203659057617,
      +                    "relativeCreated": 106.78648948669434,
                           "stack_info": null,
                           "testcaseLogger": [
                               {
      @@ -3055,8 +3045,8 @@
                                       "property_cache_pickle",
                                       "True"
                                   ],
      -                            "asctime": "2024-09-22 00:06:08,846",
      -                            "created": 1726956368.8469434,
      +                            "asctime": "2024-09-22 12:01:39,858",
      +                            "created": 1726999299.858887,
                                   "exc_info": null,
                                   "exc_text": null,
                                   "filename": "test_helpers.py",
      @@ -3069,8 +3059,8 @@
                                   "moduleLogger": [
                                       {
                                           "args": [],
      -                                    "asctime": "2024-09-22 00:06:08,846",
      -                                    "created": 1726956368.8461359,
      +                                    "asctime": "2024-09-22 12:01:39,858",
      +                                    "created": 1726999299.858249,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test_helpers.py",
      @@ -3080,23 +3070,23 @@
                                           "lineno": 17,
                                           "message": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
                                           "module": "test_helpers",
      -                                    "msecs": 846.0,
      +                                    "msecs": 858.0,
                                           "msg": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 104.82978820800781,
      +                                    "relativeCreated": 106.89568519592285,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       },
                                       {
                                           "args": [
                                               "/home/dirk/my_repositories/unittest/caching/unittest/output_data/cache_data_test_no_load_on_init.pkl"
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,846",
      -                                    "created": 1726956368.8462336,
      +                                    "asctime": "2024-09-22 12:01:39,858",
      +                                    "created": 1726999299.8583405,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test_helpers.py",
      @@ -3106,34 +3096,34 @@
                                           "lineno": 21,
                                           "message": "Initialising cached class with /home/dirk/my_repositories/unittest/caching/unittest/output_data/cache_data_test_no_load_on_init.pkl as cache file.",
                                           "module": "test_helpers",
      -                                    "msecs": 846.0,
      +                                    "msecs": 858.0,
                                           "msg": "Initialising cached class with %s as cache file.",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 104.92753982543945,
      +                                    "relativeCreated": 106.98723793029785,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       }
                                   ],
      -                            "msecs": 846.0,
      +                            "msecs": 858.0,
                                   "msg": "Initialising %s (load_all_on_init=%s).",
                                   "name": "__tLogger__",
                                   "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
      -                            "process": 281640,
      +                            "process": 291252,
                                   "processName": "MainProcess",
      -                            "relativeCreated": 105.6373119354248,
      +                            "relativeCreated": 107.53369331359863,
                                   "stack_info": null,
      -                            "thread": 139910820048960,
      +                            "thread": 139667813142592,
                                   "threadName": "MainThread",
      -                            "time_consumption": 0.0007097721099853516
      +                            "time_consumption": 0.0005464553833007812
                               },
                               {
                                   "args": [],
      -                            "asctime": "2024-09-22 00:06:08,847",
      -                            "created": 1726956368.8473787,
      +                            "asctime": "2024-09-22 12:01:39,859",
      +                            "created": 1726999299.8591032,
                                   "exc_info": null,
                                   "exc_text": null,
                                   "filename": "test_cached_data.py",
      @@ -3144,15 +3134,15 @@
                                   "message": "Collecting data from cache instance.",
                                   "module": "test_cached_data",
                                   "moduleLogger": [],
      -                            "msecs": 847.0,
      +                            "msecs": 859.0,
                                   "msg": "Collecting data from cache instance.",
                                   "name": "__tLogger__",
                                   "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_cached_data.py",
      -                            "process": 281640,
      +                            "process": 291252,
                                   "processName": "MainProcess",
      -                            "relativeCreated": 106.07266426086426,
      +                            "relativeCreated": 107.74993896484375,
                                   "stack_info": null,
      -                            "thread": 139910820048960,
      +                            "thread": 139667813142592,
                                   "threadName": "MainThread",
                                   "time_consumption": 0.0
                               },
      @@ -3161,8 +3151,8 @@
                                       "{'str': 'string', 'unicode': 'unicode', 'integer': 17, 'float': 3.14159, 'list': [1, 'two', '3', 4], 'dict': {'1': 1, '2': 'two', '3': '3', '4': 4}, 'uncached': 'uncached_data_of_class'}",
                                       ""
                                   ],
      -                            "asctime": "2024-09-22 00:06:08,847",
      -                            "created": 1726956368.8477125,
      +                            "asctime": "2024-09-22 12:01:39,859",
      +                            "created": 1726999299.8594627,
                                   "exc_info": null,
                                   "exc_text": null,
                                   "filename": "test.py",
      @@ -3179,8 +3169,8 @@
                                               "{ 'str': 'string', 'unicode': 'unicode', 'integer': 17, 'float': 3.14159, 'list': [ 1, 'two', '3', 4 ], 'dict': { '1': 1, '2': 'two', '3': '3', '4': 4 }, 'uncached': 'uncached_data_of_class' }",
                                               ""
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,847",
      -                                    "created": 1726956368.84751,
      +                                    "asctime": "2024-09-22 12:01:39,859",
      +                                    "created": 1726999299.8592415,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test.py",
      @@ -3190,15 +3180,15 @@
                                           "lineno": 22,
                                           "message": "Result (Cached data): { 'str': 'string', 'unicode': 'unicode', 'integer': 17, 'float': 3.14159, 'list': [ 1, 'two', '3', 4 ], 'dict': { '1': 1, '2': 'two', '3': '3', '4': 4 }, 'uncached': 'uncached_data_of_class' } ()",
                                           "module": "test",
      -                                    "msecs": 847.0,
      +                                    "msecs": 859.0,
                                           "msg": "Result (%s): %s (%s)",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 106.20403289794922,
      +                                    "relativeCreated": 107.88822174072266,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       },
                                       {
      @@ -3208,8 +3198,8 @@
                                               "{ 'str': 'string', 'unicode': 'unicode', 'integer': 17, 'float': 3.14159, 'list': [ 1, 'two', '3', 4 ], 'dict': { '1': 1, '2': 'two', '3': '3', '4': 4 }, 'uncached': 'uncached_data_of_class' }",
                                               ""
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,847",
      -                                    "created": 1726956368.847597,
      +                                    "asctime": "2024-09-22 12:01:39,859",
      +                                    "created": 1726999299.8593345,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test.py",
      @@ -3219,41 +3209,41 @@
                                           "lineno": 26,
                                           "message": "Expectation (Cached data): result = { 'str': 'string', 'unicode': 'unicode', 'integer': 17, 'float': 3.14159, 'list': [ 1, 'two', '3', 4 ], 'dict': { '1': 1, '2': 'two', '3': '3', '4': 4 }, 'uncached': 'uncached_data_of_class' } ()",
                                           "module": "test",
      -                                    "msecs": 847.0,
      +                                    "msecs": 859.0,
                                           "msg": "Expectation (%s): result %s %s (%s)",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 106.29081726074219,
      +                                    "relativeCreated": 107.98120498657227,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       }
                                   ],
      -                            "msecs": 847.0,
      +                            "msecs": 859.0,
                                   "msg": "Cached data is correct (Content %s and Type is %s).",
                                   "name": "__tLogger__",
                                   "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                            "process": 281640,
      +                            "process": 291252,
                                   "processName": "MainProcess",
      -                            "relativeCreated": 106.40645027160645,
      +                            "relativeCreated": 108.1094741821289,
                                   "stack_info": null,
      -                            "thread": 139910820048960,
      +                            "thread": 139667813142592,
                                   "threadName": "MainThread",
      -                            "time_consumption": 0.00011563301086425781
      +                            "time_consumption": 0.00012826919555664062
                               }
                           ],
      -                    "thread": 139910820048960,
      +                    "thread": 139667813142592,
                           "threadName": "MainThread",
      -                    "time_consumption": 0.0016744136810302734,
      -                    "time_finished": "2024-09-22 00:06:08,847",
      -                    "time_start": "2024-09-22 00:06:08,846"
      +                    "time_consumption": 0.0013229846954345703,
      +                    "time_finished": "2024-09-22 12:01:39,859",
      +                    "time_start": "2024-09-22 12:01:39,858"
                       },
                       "caching.property_cache_pickle: Test execution of save callback (full init)": {
                           "args": null,
      -                    "asctime": "2024-09-22 00:06:08,858",
      -                    "created": 1726956368.8588102,
      +                    "asctime": "2024-09-22 12:01:39,868",
      +                    "created": 1726999299.86894,
                           "exc_info": null,
                           "exc_text": null,
                           "filename": "__init__.py",
      @@ -3264,19 +3254,19 @@
                           "message": "caching.property_cache_pickle: Test execution of save callback (full init)",
                           "module": "__init__",
                           "moduleLogger": [],
      -                    "msecs": 858.0,
      +                    "msecs": 868.0,
                           "msg": "caching.property_cache_pickle: Test execution of save callback (full init)",
                           "name": "__tLogger__",
                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/report/__init__.py",
      -                    "process": 281640,
      +                    "process": 291252,
                           "processName": "MainProcess",
      -                    "relativeCreated": 117.50411987304688,
      +                    "relativeCreated": 117.58685111999512,
                           "stack_info": null,
                           "testcaseLogger": [
                               {
                                   "args": [],
      -                            "asctime": "2024-09-22 00:06:08,858",
      -                            "created": 1726956368.8589203,
      +                            "asctime": "2024-09-22 12:01:39,869",
      +                            "created": 1726999299.8690636,
                                   "exc_info": null,
                                   "exc_text": null,
                                   "filename": "test_save_callback.py",
      @@ -3287,15 +3277,15 @@
                                   "message": "Installing save_callback, which sets a variable to True on execution.",
                                   "module": "test_save_callback",
                                   "moduleLogger": [],
      -                            "msecs": 858.0,
      +                            "msecs": 869.0,
                                   "msg": "Installing save_callback, which sets a variable to True on execution.",
                                   "name": "__tLogger__",
                                   "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_save_callback.py",
      -                            "process": 281640,
      +                            "process": 291252,
                                   "processName": "MainProcess",
      -                            "relativeCreated": 117.6142692565918,
      +                            "relativeCreated": 117.71035194396973,
                                   "stack_info": null,
      -                            "thread": 139910820048960,
      +                            "thread": 139667813142592,
                                   "threadName": "MainThread",
                                   "time_consumption": 0.0
                               },
      @@ -3304,8 +3294,8 @@
                                       "True",
                                       ""
                                   ],
      -                            "asctime": "2024-09-22 00:06:08,859",
      -                            "created": 1726956368.859383,
      +                            "asctime": "2024-09-22 12:01:39,869",
      +                            "created": 1726999299.869391,
                                   "exc_info": null,
                                   "exc_text": null,
                                   "filename": "test.py",
      @@ -3322,8 +3312,8 @@
                                               "True",
                                               ""
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,859",
      -                                    "created": 1726956368.8591707,
      +                                    "asctime": "2024-09-22 12:01:39,869",
      +                                    "created": 1726999299.8692632,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test.py",
      @@ -3333,15 +3323,15 @@
                                           "lineno": 22,
                                           "message": "Result (Save callback execution variable): True ()",
                                           "module": "test",
      -                                    "msecs": 859.0,
      +                                    "msecs": 869.0,
                                           "msg": "Result (%s): %s (%s)",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 117.86460876464844,
      +                                    "relativeCreated": 117.90990829467773,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       },
                                       {
      @@ -3351,8 +3341,8 @@
                                               "True",
                                               ""
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,859",
      -                                    "created": 1726956368.85927,
      +                                    "asctime": "2024-09-22 12:01:39,869",
      +                                    "created": 1726999299.8693337,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test.py",
      @@ -3362,41 +3352,41 @@
                                           "lineno": 26,
                                           "message": "Expectation (Save callback execution variable): result = True ()",
                                           "module": "test",
      -                                    "msecs": 859.0,
      +                                    "msecs": 869.0,
                                           "msg": "Expectation (%s): result %s %s (%s)",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 117.96402931213379,
      +                                    "relativeCreated": 117.9804801940918,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       }
                                   ],
      -                            "msecs": 859.0,
      +                            "msecs": 869.0,
                                   "msg": "Save callback execution variable is correct (Content %s and Type is %s).",
                                   "name": "__tLogger__",
                                   "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                            "process": 281640,
      +                            "process": 291252,
                                   "processName": "MainProcess",
      -                            "relativeCreated": 118.07703971862793,
      +                            "relativeCreated": 118.03770065307617,
                                   "stack_info": null,
      -                            "thread": 139910820048960,
      +                            "thread": 139667813142592,
                                   "threadName": "MainThread",
      -                            "time_consumption": 0.00011301040649414062
      +                            "time_consumption": 5.7220458984375e-05
                               }
                           ],
      -                    "thread": 139910820048960,
      +                    "thread": 139667813142592,
                           "threadName": "MainThread",
      -                    "time_consumption": 0.0005729198455810547,
      -                    "time_finished": "2024-09-22 00:06:08,859",
      -                    "time_start": "2024-09-22 00:06:08,858"
      +                    "time_consumption": 0.0004508495330810547,
      +                    "time_finished": "2024-09-22 12:01:39,869",
      +                    "time_start": "2024-09-22 12:01:39,868"
                       },
                       "caching.property_cache_pickle: Test full initialised PICKLE-Cache-Object": {
                           "args": null,
      -                    "asctime": "2024-09-22 00:06:08,840",
      -                    "created": 1726956368.840629,
      +                    "asctime": "2024-09-22 12:01:39,853",
      +                    "created": 1726999299.8534203,
                           "exc_info": null,
                           "exc_text": null,
                           "filename": "__init__.py",
      @@ -3407,13 +3397,13 @@
                           "message": "caching.property_cache_pickle: Test full initialised PICKLE-Cache-Object",
                           "module": "__init__",
                           "moduleLogger": [],
      -                    "msecs": 840.0,
      +                    "msecs": 853.0,
                           "msg": "caching.property_cache_pickle: Test full initialised PICKLE-Cache-Object",
                           "name": "__tLogger__",
                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/report/__init__.py",
      -                    "process": 281640,
      +                    "process": 291252,
                           "processName": "MainProcess",
      -                    "relativeCreated": 99.32303428649902,
      +                    "relativeCreated": 102.0669937133789,
                           "stack_info": null,
                           "testcaseLogger": [
                               {
      @@ -3421,8 +3411,8 @@
                                       "property_cache_pickle",
                                       "True"
                                   ],
      -                            "asctime": "2024-09-22 00:06:08,841",
      -                            "created": 1726956368.8415403,
      +                            "asctime": "2024-09-22 12:01:39,854",
      +                            "created": 1726999299.8542874,
                                   "exc_info": null,
                                   "exc_text": null,
                                   "filename": "test_helpers.py",
      @@ -3435,8 +3425,8 @@
                                   "moduleLogger": [
                                       {
                                           "args": [],
      -                                    "asctime": "2024-09-22 00:06:08,840",
      -                                    "created": 1726956368.8407278,
      +                                    "asctime": "2024-09-22 12:01:39,853",
      +                                    "created": 1726999299.8535473,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test_helpers.py",
      @@ -3446,23 +3436,23 @@
                                           "lineno": 17,
                                           "message": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
                                           "module": "test_helpers",
      -                                    "msecs": 840.0,
      +                                    "msecs": 853.0,
                                           "msg": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 99.42173957824707,
      +                                    "relativeCreated": 102.19407081604004,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       },
                                       {
                                           "args": [
                                               "/home/dirk/my_repositories/unittest/caching/unittest/output_data/load_on_init.pkl"
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,840",
      -                                    "created": 1726956368.8408265,
      +                                    "asctime": "2024-09-22 12:01:39,853",
      +                                    "created": 1726999299.8536735,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test_helpers.py",
      @@ -3472,36 +3462,36 @@
                                           "lineno": 21,
                                           "message": "Initialising cached class with /home/dirk/my_repositories/unittest/caching/unittest/output_data/load_on_init.pkl as cache file.",
                                           "module": "test_helpers",
      -                                    "msecs": 840.0,
      +                                    "msecs": 853.0,
                                           "msg": "Initialising cached class with %s as cache file.",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 99.52044486999512,
      +                                    "relativeCreated": 102.32019424438477,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       }
                                   ],
      -                            "msecs": 841.0,
      +                            "msecs": 854.0,
                                   "msg": "Initialising %s (load_all_on_init=%s).",
                                   "name": "__tLogger__",
                                   "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
      -                            "process": 281640,
      +                            "process": 291252,
                                   "processName": "MainProcess",
      -                            "relativeCreated": 100.2342700958252,
      +                            "relativeCreated": 102.93412208557129,
                                   "stack_info": null,
      -                            "thread": 139910820048960,
      +                            "thread": 139667813142592,
                                   "threadName": "MainThread",
      -                            "time_consumption": 0.0007138252258300781
      +                            "time_consumption": 0.0006139278411865234
                               },
                               {
                                   "args": [
                                       "property_cache_pickle"
                                   ],
      -                            "asctime": "2024-09-22 00:06:08,841",
      -                            "created": 1726956368.8418572,
      +                            "asctime": "2024-09-22 12:01:39,854",
      +                            "created": 1726999299.8545618,
                                   "exc_info": null,
                                   "exc_text": null,
                                   "filename": "test_load_on_init.py",
      @@ -3516,8 +3506,8 @@
                                           "args": [
                                               "{'str': 'string', 'unicode': 'unicode', 'integer': 17, 'float': 3.14159, 'list': [1, 'two', '3', 4], 'dict': {'1': 1, '2': 'two', '3': '3', '4': 4}}"
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,841",
      -                                    "created": 1726956368.8417938,
      +                                    "asctime": "2024-09-22 12:01:39,854",
      +                                    "created": 1726999299.8544931,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test_load_on_init.py",
      @@ -3527,37 +3517,37 @@
                                           "lineno": 20,
                                           "message": "Using storage object of cache class for comparison: {'str': 'string', 'unicode': 'unicode', 'integer': 17, 'float': 3.14159, 'list': [1, 'two', '3', 4], 'dict': {'1': 1, '2': 'two', '3': '3', '4': 4}}",
                                           "module": "test_load_on_init",
      -                                    "msecs": 841.0,
      +                                    "msecs": 854.0,
                                           "msg": "Using storage object of cache class for comparison: %s",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_load_on_init.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 100.48770904541016,
      +                                    "relativeCreated": 103.13987731933594,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       }
                                   ],
      -                            "msecs": 841.0,
      +                            "msecs": 854.0,
                                   "msg": "Extracting storage object from %s for comparison.",
                                   "name": "__tLogger__",
                                   "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_load_on_init.py",
      -                            "process": 281640,
      +                            "process": 291252,
                                   "processName": "MainProcess",
      -                            "relativeCreated": 100.55112838745117,
      +                            "relativeCreated": 103.20854187011719,
                                   "stack_info": null,
      -                            "thread": 139910820048960,
      +                            "thread": 139667813142592,
                                   "threadName": "MainThread",
      -                            "time_consumption": 6.341934204101562e-05
      +                            "time_consumption": 6.866455078125e-05
                               },
                               {
                                   "args": [
                                       "{'str': 'string', 'unicode': 'unicode', 'integer': 17, 'float': 3.14159, 'list': [1, 'two', '3', 4], 'dict': {'1': 1, '2': 'two', '3': '3', '4': 4}}",
                                       ""
                                   ],
      -                            "asctime": "2024-09-22 00:06:08,842",
      -                            "created": 1726956368.8421776,
      +                            "asctime": "2024-09-22 12:01:39,854",
      +                            "created": 1726999299.8549182,
                                   "exc_info": null,
                                   "exc_text": null,
                                   "filename": "test.py",
      @@ -3574,8 +3564,8 @@
                                               "{ 'str': 'string', 'unicode': 'unicode', 'integer': 17, 'float': 3.14159, 'list': [ 1, 'two', '3', 4 ], 'dict': { '1': 1, '2': 'two', '3': '3', '4': 4 } }",
                                               ""
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,841",
      -                                    "created": 1726956368.841977,
      +                                    "asctime": "2024-09-22 12:01:39,854",
      +                                    "created": 1726999299.8546965,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test.py",
      @@ -3585,15 +3575,15 @@
                                           "lineno": 22,
                                           "message": "Result (Cache object): { 'str': 'string', 'unicode': 'unicode', 'integer': 17, 'float': 3.14159, 'list': [ 1, 'two', '3', 4 ], 'dict': { '1': 1, '2': 'two', '3': '3', '4': 4 } } ()",
                                           "module": "test",
      -                                    "msecs": 841.0,
      +                                    "msecs": 854.0,
                                           "msg": "Result (%s): %s (%s)",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 100.67081451416016,
      +                                    "relativeCreated": 103.34324836730957,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       },
                                       {
      @@ -3603,8 +3593,8 @@
                                               "{ 'str': 'string', 'unicode': 'unicode', 'integer': 17, 'float': 3.14159, 'list': [ 1, 'two', '3', 4 ], 'dict': { '1': 1, '2': 'two', '3': '3', '4': 4 } }",
                                               ""
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,842",
      -                                    "created": 1726956368.8420575,
      +                                    "asctime": "2024-09-22 12:01:39,854",
      +                                    "created": 1726999299.8547854,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test.py",
      @@ -3614,41 +3604,41 @@
                                           "lineno": 26,
                                           "message": "Expectation (Cache object): result = { 'str': 'string', 'unicode': 'unicode', 'integer': 17, 'float': 3.14159, 'list': [ 1, 'two', '3', 4 ], 'dict': { '1': 1, '2': 'two', '3': '3', '4': 4 } } ()",
                                           "module": "test",
      -                                    "msecs": 842.0,
      +                                    "msecs": 854.0,
                                           "msg": "Expectation (%s): result %s %s (%s)",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 100.75139999389648,
      +                                    "relativeCreated": 103.43217849731445,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       }
                                   ],
      -                            "msecs": 842.0,
      +                            "msecs": 854.0,
                                   "msg": "Cache object is correct (Content %s and Type is %s).",
                                   "name": "__tLogger__",
                                   "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                            "process": 281640,
      +                            "process": 291252,
                                   "processName": "MainProcess",
      -                            "relativeCreated": 100.87156295776367,
      +                            "relativeCreated": 103.56497764587402,
                                   "stack_info": null,
      -                            "thread": 139910820048960,
      +                            "thread": 139667813142592,
                                   "threadName": "MainThread",
      -                            "time_consumption": 0.0001201629638671875
      +                            "time_consumption": 0.0001327991485595703
                               }
                           ],
      -                    "thread": 139910820048960,
      +                    "thread": 139667813142592,
                           "threadName": "MainThread",
      -                    "time_consumption": 0.0015485286712646484,
      -                    "time_finished": "2024-09-22 00:06:08,842",
      -                    "time_start": "2024-09-22 00:06:08,840"
      +                    "time_consumption": 0.0014979839324951172,
      +                    "time_finished": "2024-09-22 12:01:39,854",
      +                    "time_start": "2024-09-22 12:01:39,853"
                       },
                       "caching.property_cache_pickle: Test get from source caused by changed uid (full init)": {
                           "args": null,
      -                    "asctime": "2024-09-22 00:06:08,853",
      -                    "created": 1726956368.8531213,
      +                    "asctime": "2024-09-22 12:01:39,863",
      +                    "created": 1726999299.863558,
                           "exc_info": null,
                           "exc_text": null,
                           "filename": "__init__.py",
      @@ -3659,13 +3649,13 @@
                           "message": "caching.property_cache_pickle: Test get from source caused by changed uid (full init)",
                           "module": "__init__",
                           "moduleLogger": [],
      -                    "msecs": 853.0,
      +                    "msecs": 863.0,
                           "msg": "caching.property_cache_pickle: Test get from source caused by changed uid (full init)",
                           "name": "__tLogger__",
                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/report/__init__.py",
      -                    "process": 281640,
      +                    "process": 291252,
                           "processName": "MainProcess",
      -                    "relativeCreated": 111.81521415710449,
      +                    "relativeCreated": 112.20479011535645,
                           "stack_info": null,
                           "testcaseLogger": [
                               {
      @@ -3673,8 +3663,8 @@
                                       "property_cache_pickle",
                                       "True"
                                   ],
      -                            "asctime": "2024-09-22 00:06:08,854",
      -                            "created": 1726956368.8540356,
      +                            "asctime": "2024-09-22 12:01:39,864",
      +                            "created": 1726999299.8643355,
                                   "exc_info": null,
                                   "exc_text": null,
                                   "filename": "test_helpers.py",
      @@ -3687,8 +3677,8 @@
                                   "moduleLogger": [
                                       {
                                           "args": [],
      -                                    "asctime": "2024-09-22 00:06:08,853",
      -                                    "created": 1726956368.8532195,
      +                                    "asctime": "2024-09-22 12:01:39,863",
      +                                    "created": 1726999299.8636723,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test_helpers.py",
      @@ -3698,23 +3688,23 @@
                                           "lineno": 17,
                                           "message": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
                                           "module": "test_helpers",
      -                                    "msecs": 853.0,
      +                                    "msecs": 863.0,
                                           "msg": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 111.91344261169434,
      +                                    "relativeCreated": 112.3189926147461,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       },
                                       {
                                           "args": [
                                               "/home/dirk/my_repositories/unittest/caching/unittest/output_data/uid_test_load_on_init.pkl"
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,853",
      -                                    "created": 1726956368.8533282,
      +                                    "asctime": "2024-09-22 12:01:39,863",
      +                                    "created": 1726999299.8637638,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test_helpers.py",
      @@ -3724,37 +3714,37 @@
                                           "lineno": 21,
                                           "message": "Initialising cached class with /home/dirk/my_repositories/unittest/caching/unittest/output_data/uid_test_load_on_init.pkl as cache file.",
                                           "module": "test_helpers",
      -                                    "msecs": 853.0,
      +                                    "msecs": 863.0,
                                           "msg": "Initialising cached class with %s as cache file.",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 112.02216148376465,
      +                                    "relativeCreated": 112.4105453491211,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       }
                                   ],
      -                            "msecs": 854.0,
      +                            "msecs": 864.0,
                                   "msg": "Initialising %s (load_all_on_init=%s).",
                                   "name": "__tLogger__",
                                   "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
      -                            "process": 281640,
      +                            "process": 291252,
                                   "processName": "MainProcess",
      -                            "relativeCreated": 112.72954940795898,
      +                            "relativeCreated": 112.98227310180664,
                                   "stack_info": null,
      -                            "thread": 139910820048960,
      +                            "thread": 139667813142592,
                                   "threadName": "MainThread",
      -                            "time_consumption": 0.0007073879241943359
      +                            "time_consumption": 0.0005717277526855469
                               },
                               {
                                   "args": [
                                       "{'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': ['one', 2, 3, '4'], 'dict': {'1': '1', '2': 2, '3': 'three', '4': '4'}}",
                                       ""
                                   ],
      -                            "asctime": "2024-09-22 00:06:08,855",
      -                            "created": 1726956368.855373,
      +                            "asctime": "2024-09-22 12:01:39,865",
      +                            "created": 1726999299.865646,
                                   "exc_info": null,
                                   "exc_text": null,
                                   "filename": "test.py",
      @@ -3771,8 +3761,8 @@
                                               "{ 'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': [ 'one', 2, 3, '4' ], 'dict': { '1': '1', '2': 2, '3': 'three', '4': '4' } }",
                                               ""
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,855",
      -                                    "created": 1726956368.8551333,
      +                                    "asctime": "2024-09-22 12:01:39,865",
      +                                    "created": 1726999299.8652558,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test.py",
      @@ -3782,15 +3772,15 @@
                                           "lineno": 22,
                                           "message": "Result (Instance data after changing uid): { 'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': [ 'one', 2, 3, '4' ], 'dict': { '1': '1', '2': 2, '3': 'three', '4': '4' } } ()",
                                           "module": "test",
      -                                    "msecs": 855.0,
      +                                    "msecs": 865.0,
                                           "msg": "Result (%s): %s (%s)",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 113.82722854614258,
      +                                    "relativeCreated": 113.90256881713867,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       },
                                       {
      @@ -3800,8 +3790,8 @@
                                               "{ 'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': [ 'one', 2, 3, '4' ], 'dict': { '1': '1', '2': 2, '3': 'three', '4': '4' } }",
                                               ""
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,855",
      -                                    "created": 1726956368.8552423,
      +                                    "asctime": "2024-09-22 12:01:39,865",
      +                                    "created": 1726999299.8654537,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test.py",
      @@ -3811,41 +3801,41 @@
                                           "lineno": 26,
                                           "message": "Expectation (Instance data after changing uid): result = { 'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': [ 'one', 2, 3, '4' ], 'dict': { '1': '1', '2': 2, '3': 'three', '4': '4' } } ()",
                                           "module": "test",
      -                                    "msecs": 855.0,
      +                                    "msecs": 865.0,
                                           "msg": "Expectation (%s): result %s %s (%s)",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 113.93618583679199,
      +                                    "relativeCreated": 114.10045623779297,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       }
                                   ],
      -                            "msecs": 855.0,
      +                            "msecs": 865.0,
                                   "msg": "Instance data after changing uid is correct (Content %s and Type is %s).",
                                   "name": "__tLogger__",
                                   "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                            "process": 281640,
      +                            "process": 291252,
                                   "processName": "MainProcess",
      -                            "relativeCreated": 114.06683921813965,
      +                            "relativeCreated": 114.29262161254883,
                                   "stack_info": null,
      -                            "thread": 139910820048960,
      +                            "thread": 139667813142592,
                                   "threadName": "MainThread",
      -                            "time_consumption": 0.00013065338134765625
      +                            "time_consumption": 0.00019216537475585938
                               }
                           ],
      -                    "thread": 139910820048960,
      +                    "thread": 139667813142592,
                           "threadName": "MainThread",
      -                    "time_consumption": 0.0022516250610351562,
      -                    "time_finished": "2024-09-22 00:06:08,855",
      -                    "time_start": "2024-09-22 00:06:08,853"
      +                    "time_consumption": 0.002087831497192383,
      +                    "time_finished": "2024-09-22 12:01:39,865",
      +                    "time_start": "2024-09-22 12:01:39,863"
                       },
                       "caching.property_cache_pickle: Test get from source caused by changed uid (partially init)": {
                           "args": null,
      -                    "asctime": "2024-09-22 00:06:08,855",
      -                    "created": 1726956368.855686,
      +                    "asctime": "2024-09-22 12:01:39,866",
      +                    "created": 1726999299.8662899,
                           "exc_info": null,
                           "exc_text": null,
                           "filename": "__init__.py",
      @@ -3856,13 +3846,13 @@
                           "message": "caching.property_cache_pickle: Test get from source caused by changed uid (partially init)",
                           "module": "__init__",
                           "moduleLogger": [],
      -                    "msecs": 855.0,
      +                    "msecs": 866.0,
                           "msg": "caching.property_cache_pickle: Test get from source caused by changed uid (partially init)",
                           "name": "__tLogger__",
                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/report/__init__.py",
      -                    "process": 281640,
      +                    "process": 291252,
                           "processName": "MainProcess",
      -                    "relativeCreated": 114.3798828125,
      +                    "relativeCreated": 114.93659019470215,
                           "stack_info": null,
                           "testcaseLogger": [
                               {
      @@ -3870,8 +3860,8 @@
                                       "property_cache_pickle",
                                       "True"
                                   ],
      -                            "asctime": "2024-09-22 00:06:08,856",
      -                            "created": 1726956368.8565953,
      +                            "asctime": "2024-09-22 12:01:39,867",
      +                            "created": 1726999299.8674836,
                                   "exc_info": null,
                                   "exc_text": null,
                                   "filename": "test_helpers.py",
      @@ -3884,8 +3874,8 @@
                                   "moduleLogger": [
                                       {
                                           "args": [],
      -                                    "asctime": "2024-09-22 00:06:08,855",
      -                                    "created": 1726956368.8557904,
      +                                    "asctime": "2024-09-22 12:01:39,866",
      +                                    "created": 1726999299.8665743,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test_helpers.py",
      @@ -3895,23 +3885,23 @@
                                           "lineno": 17,
                                           "message": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
                                           "module": "test_helpers",
      -                                    "msecs": 855.0,
      +                                    "msecs": 866.0,
                                           "msg": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 114.48431015014648,
      +                                    "relativeCreated": 115.22102355957031,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       },
                                       {
                                           "args": [
                                               "/home/dirk/my_repositories/unittest/caching/unittest/output_data/uid_test_no_load_on_init.pkl"
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,855",
      -                                    "created": 1726956368.855892,
      +                                    "asctime": "2024-09-22 12:01:39,866",
      +                                    "created": 1726999299.866778,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test_helpers.py",
      @@ -3921,37 +3911,37 @@
                                           "lineno": 21,
                                           "message": "Initialising cached class with /home/dirk/my_repositories/unittest/caching/unittest/output_data/uid_test_no_load_on_init.pkl as cache file.",
                                           "module": "test_helpers",
      -                                    "msecs": 855.0,
      +                                    "msecs": 866.0,
                                           "msg": "Initialising cached class with %s as cache file.",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 114.58587646484375,
      +                                    "relativeCreated": 115.42463302612305,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       }
                                   ],
      -                            "msecs": 856.0,
      +                            "msecs": 867.0,
                                   "msg": "Initialising %s (load_all_on_init=%s).",
                                   "name": "__tLogger__",
                                   "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
      -                            "process": 281640,
      +                            "process": 291252,
                                   "processName": "MainProcess",
      -                            "relativeCreated": 115.28921127319336,
      +                            "relativeCreated": 116.13035202026367,
                                   "stack_info": null,
      -                            "thread": 139910820048960,
      +                            "thread": 139667813142592,
                                   "threadName": "MainThread",
      -                            "time_consumption": 0.0007033348083496094
      +                            "time_consumption": 0.000705718994140625
                               },
                               {
                                   "args": [
                                       "{'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': ['one', 2, 3, '4'], 'dict': {'1': '1', '2': 2, '3': 'three', '4': '4'}}",
                                       ""
                                   ],
      -                            "asctime": "2024-09-22 00:06:08,858",
      -                            "created": 1726956368.8585827,
      +                            "asctime": "2024-09-22 12:01:39,868",
      +                            "created": 1726999299.8687303,
                                   "exc_info": null,
                                   "exc_text": null,
                                   "filename": "test.py",
      @@ -3968,8 +3958,8 @@
                                               "{ 'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': [ 'one', 2, 3, '4' ], 'dict': { '1': '1', '2': 2, '3': 'three', '4': '4' } }",
                                               ""
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,858",
      -                                    "created": 1726956368.8582325,
      +                                    "asctime": "2024-09-22 12:01:39,868",
      +                                    "created": 1726999299.868463,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test.py",
      @@ -3979,15 +3969,15 @@
                                           "lineno": 22,
                                           "message": "Result (Instance data after changing uid): { 'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': [ 'one', 2, 3, '4' ], 'dict': { '1': '1', '2': 2, '3': 'three', '4': '4' } } ()",
                                           "module": "test",
      -                                    "msecs": 858.0,
      +                                    "msecs": 868.0,
                                           "msg": "Result (%s): %s (%s)",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 116.92643165588379,
      +                                    "relativeCreated": 117.10977554321289,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       },
                                       {
      @@ -3997,8 +3987,8 @@
                                               "{ 'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': [ 'one', 2, 3, '4' ], 'dict': { '1': '1', '2': 2, '3': 'three', '4': '4' } }",
                                               ""
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,858",
      -                                    "created": 1726956368.8584151,
      +                                    "asctime": "2024-09-22 12:01:39,868",
      +                                    "created": 1726999299.868587,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test.py",
      @@ -4008,41 +3998,41 @@
                                           "lineno": 26,
                                           "message": "Expectation (Instance data after changing uid): result = { 'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': [ 'one', 2, 3, '4' ], 'dict': { '1': '1', '2': 2, '3': 'three', '4': '4' } } ()",
                                           "module": "test",
      -                                    "msecs": 858.0,
      +                                    "msecs": 868.0,
                                           "msg": "Expectation (%s): result %s %s (%s)",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 117.10906028747559,
      +                                    "relativeCreated": 117.2337532043457,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       }
                                   ],
      -                            "msecs": 858.0,
      +                            "msecs": 868.0,
                                   "msg": "Instance data after changing uid is correct (Content %s and Type is %s).",
                                   "name": "__tLogger__",
                                   "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                            "process": 281640,
      +                            "process": 291252,
                                   "processName": "MainProcess",
      -                            "relativeCreated": 117.27666854858398,
      +                            "relativeCreated": 117.37704277038574,
                                   "stack_info": null,
      -                            "thread": 139910820048960,
      +                            "thread": 139667813142592,
                                   "threadName": "MainThread",
      -                            "time_consumption": 0.00016760826110839844
      +                            "time_consumption": 0.00014328956604003906
                               }
                           ],
      -                    "thread": 139910820048960,
      +                    "thread": 139667813142592,
                           "threadName": "MainThread",
      -                    "time_consumption": 0.0028967857360839844,
      -                    "time_finished": "2024-09-22 00:06:08,858",
      -                    "time_start": "2024-09-22 00:06:08,855"
      +                    "time_consumption": 0.0024404525756835938,
      +                    "time_finished": "2024-09-22 12:01:39,868",
      +                    "time_start": "2024-09-22 12:01:39,866"
                       },
                       "caching.property_cache_pickle: Test get from source caused by increased data version (full init)": {
                           "args": null,
      -                    "asctime": "2024-09-22 00:06:08,847",
      -                    "created": 1726956368.8478754,
      +                    "asctime": "2024-09-22 12:01:39,859",
      +                    "created": 1726999299.8596387,
                           "exc_info": null,
                           "exc_text": null,
                           "filename": "__init__.py",
      @@ -4053,13 +4043,13 @@
                           "message": "caching.property_cache_pickle: Test get from source caused by increased data version (full init)",
                           "module": "__init__",
                           "moduleLogger": [],
      -                    "msecs": 847.0,
      +                    "msecs": 859.0,
                           "msg": "caching.property_cache_pickle: Test get from source caused by increased data version (full init)",
                           "name": "__tLogger__",
                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/report/__init__.py",
      -                    "process": 281640,
      +                    "process": 291252,
                           "processName": "MainProcess",
      -                    "relativeCreated": 106.56929016113281,
      +                    "relativeCreated": 108.28542709350586,
                           "stack_info": null,
                           "testcaseLogger": [
                               {
      @@ -4067,8 +4057,8 @@
                                       "property_cache_pickle",
                                       "True"
                                   ],
      -                            "asctime": "2024-09-22 00:06:08,848",
      -                            "created": 1726956368.8487782,
      +                            "asctime": "2024-09-22 12:01:39,860",
      +                            "created": 1726999299.8603816,
                                   "exc_info": null,
                                   "exc_text": null,
                                   "filename": "test_helpers.py",
      @@ -4081,8 +4071,8 @@
                                   "moduleLogger": [
                                       {
                                           "args": [],
      -                                    "asctime": "2024-09-22 00:06:08,847",
      -                                    "created": 1726956368.847975,
      +                                    "asctime": "2024-09-22 12:01:39,859",
      +                                    "created": 1726999299.8597474,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test_helpers.py",
      @@ -4092,23 +4082,23 @@
                                           "lineno": 17,
                                           "message": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
                                           "module": "test_helpers",
      -                                    "msecs": 847.0,
      +                                    "msecs": 859.0,
                                           "msg": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 106.66894912719727,
      +                                    "relativeCreated": 108.39414596557617,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       },
                                       {
                                           "args": [
                                               "/home/dirk/my_repositories/unittest/caching/unittest/output_data/data_version_test_load_on_init.pkl"
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,848",
      -                                    "created": 1726956368.848073,
      +                                    "asctime": "2024-09-22 12:01:39,859",
      +                                    "created": 1726999299.8598385,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test_helpers.py",
      @@ -4118,37 +4108,37 @@
                                           "lineno": 21,
                                           "message": "Initialising cached class with /home/dirk/my_repositories/unittest/caching/unittest/output_data/data_version_test_load_on_init.pkl as cache file.",
                                           "module": "test_helpers",
      -                                    "msecs": 848.0,
      +                                    "msecs": 859.0,
                                           "msg": "Initialising cached class with %s as cache file.",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 106.76693916320801,
      +                                    "relativeCreated": 108.48522186279297,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       }
                                   ],
      -                            "msecs": 848.0,
      +                            "msecs": 860.0,
                                   "msg": "Initialising %s (load_all_on_init=%s).",
                                   "name": "__tLogger__",
                                   "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
      -                            "process": 281640,
      +                            "process": 291252,
                                   "processName": "MainProcess",
      -                            "relativeCreated": 107.47218132019043,
      +                            "relativeCreated": 109.02833938598633,
                                   "stack_info": null,
      -                            "thread": 139910820048960,
      +                            "thread": 139667813142592,
                                   "threadName": "MainThread",
      -                            "time_consumption": 0.0007052421569824219
      +                            "time_consumption": 0.0005431175231933594
                               },
                               {
                                   "args": [
                                       "{'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': ['one', 2, 3, '4'], 'dict': {'1': '1', '2': 2, '3': 'three', '4': '4'}}",
                                       ""
                                   ],
      -                            "asctime": "2024-09-22 00:06:08,850",
      -                            "created": 1726956368.850079,
      +                            "asctime": "2024-09-22 12:01:39,861",
      +                            "created": 1726999299.861321,
                                   "exc_info": null,
                                   "exc_text": null,
                                   "filename": "test.py",
      @@ -4165,8 +4155,8 @@
                                               "{ 'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': [ 'one', 2, 3, '4' ], 'dict': { '1': '1', '2': 2, '3': 'three', '4': '4' } }",
                                               ""
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,849",
      -                                    "created": 1726956368.8498769,
      +                                    "asctime": "2024-09-22 12:01:39,861",
      +                                    "created": 1726999299.8610969,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test.py",
      @@ -4176,15 +4166,15 @@
                                           "lineno": 22,
                                           "message": "Result (Instance data after increasing data_version): { 'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': [ 'one', 2, 3, '4' ], 'dict': { '1': '1', '2': 2, '3': 'three', '4': '4' } } ()",
                                           "module": "test",
      -                                    "msecs": 849.0,
      +                                    "msecs": 861.0,
                                           "msg": "Result (%s): %s (%s)",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 108.57081413269043,
      +                                    "relativeCreated": 109.74359512329102,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       },
                                       {
      @@ -4194,8 +4184,8 @@
                                               "{ 'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': [ 'one', 2, 3, '4' ], 'dict': { '1': '1', '2': 2, '3': 'three', '4': '4' } }",
                                               ""
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,849",
      -                                    "created": 1726956368.849969,
      +                                    "asctime": "2024-09-22 12:01:39,861",
      +                                    "created": 1726999299.8611977,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test.py",
      @@ -4205,41 +4195,41 @@
                                           "lineno": 26,
                                           "message": "Expectation (Instance data after increasing data_version): result = { 'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': [ 'one', 2, 3, '4' ], 'dict': { '1': '1', '2': 2, '3': 'three', '4': '4' } } ()",
                                           "module": "test",
      -                                    "msecs": 849.0,
      +                                    "msecs": 861.0,
                                           "msg": "Expectation (%s): result %s %s (%s)",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 108.66284370422363,
      +                                    "relativeCreated": 109.84444618225098,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       }
                                   ],
      -                            "msecs": 850.0,
      +                            "msecs": 861.0,
                                   "msg": "Instance data after increasing data_version is correct (Content %s and Type is %s).",
                                   "name": "__tLogger__",
                                   "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                            "process": 281640,
      +                            "process": 291252,
                                   "processName": "MainProcess",
      -                            "relativeCreated": 108.77299308776855,
      +                            "relativeCreated": 109.96770858764648,
                                   "stack_info": null,
      -                            "thread": 139910820048960,
      +                            "thread": 139667813142592,
                                   "threadName": "MainThread",
      -                            "time_consumption": 0.00011014938354492188
      +                            "time_consumption": 0.0001232624053955078
                               }
                           ],
      -                    "thread": 139910820048960,
      +                    "thread": 139667813142592,
                           "threadName": "MainThread",
      -                    "time_consumption": 0.002203702926635742,
      -                    "time_finished": "2024-09-22 00:06:08,850",
      -                    "time_start": "2024-09-22 00:06:08,847"
      +                    "time_consumption": 0.001682281494140625,
      +                    "time_finished": "2024-09-22 12:01:39,861",
      +                    "time_start": "2024-09-22 12:01:39,859"
                       },
                       "caching.property_cache_pickle: Test get from source caused by increased data version (partially init)": {
                           "args": null,
      -                    "asctime": "2024-09-22 00:06:08,850",
      -                    "created": 1726956368.8502364,
      +                    "asctime": "2024-09-22 12:01:39,861",
      +                    "created": 1726999299.8614974,
                           "exc_info": null,
                           "exc_text": null,
                           "filename": "__init__.py",
      @@ -4250,13 +4240,13 @@
                           "message": "caching.property_cache_pickle: Test get from source caused by increased data version (partially init)",
                           "module": "__init__",
                           "moduleLogger": [],
      -                    "msecs": 850.0,
      +                    "msecs": 861.0,
                           "msg": "caching.property_cache_pickle: Test get from source caused by increased data version (partially init)",
                           "name": "__tLogger__",
                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/report/__init__.py",
      -                    "process": 281640,
      +                    "process": 291252,
                           "processName": "MainProcess",
      -                    "relativeCreated": 108.93034934997559,
      +                    "relativeCreated": 110.14413833618164,
                           "stack_info": null,
                           "testcaseLogger": [
                               {
      @@ -4264,8 +4254,8 @@
                                       "property_cache_pickle",
                                       "True"
                                   ],
      -                            "asctime": "2024-09-22 00:06:08,851",
      -                            "created": 1726956368.8511293,
      +                            "asctime": "2024-09-22 12:01:39,862",
      +                            "created": 1726999299.8622346,
                                   "exc_info": null,
                                   "exc_text": null,
                                   "filename": "test_helpers.py",
      @@ -4278,8 +4268,8 @@
                                   "moduleLogger": [
                                       {
                                           "args": [],
      -                                    "asctime": "2024-09-22 00:06:08,850",
      -                                    "created": 1726956368.8503335,
      +                                    "asctime": "2024-09-22 12:01:39,861",
      +                                    "created": 1726999299.8616073,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test_helpers.py",
      @@ -4289,23 +4279,23 @@
                                           "lineno": 17,
                                           "message": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
                                           "module": "test_helpers",
      -                                    "msecs": 850.0,
      +                                    "msecs": 861.0,
                                           "msg": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 109.02738571166992,
      +                                    "relativeCreated": 110.25404930114746,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       },
                                       {
                                           "args": [
                                               "/home/dirk/my_repositories/unittest/caching/unittest/output_data/data_version_test_no_load_on_init.pkl"
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,850",
      -                                    "created": 1726956368.8504274,
      +                                    "asctime": "2024-09-22 12:01:39,861",
      +                                    "created": 1726999299.8617005,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test_helpers.py",
      @@ -4315,37 +4305,37 @@
                                           "lineno": 21,
                                           "message": "Initialising cached class with /home/dirk/my_repositories/unittest/caching/unittest/output_data/data_version_test_no_load_on_init.pkl as cache file.",
                                           "module": "test_helpers",
      -                                    "msecs": 850.0,
      +                                    "msecs": 861.0,
                                           "msg": "Initialising cached class with %s as cache file.",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 109.12132263183594,
      +                                    "relativeCreated": 110.34727096557617,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       }
                                   ],
      -                            "msecs": 851.0,
      +                            "msecs": 862.0,
                                   "msg": "Initialising %s (load_all_on_init=%s).",
                                   "name": "__tLogger__",
                                   "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
      -                            "process": 281640,
      +                            "process": 291252,
                                   "processName": "MainProcess",
      -                            "relativeCreated": 109.82322692871094,
      +                            "relativeCreated": 110.88132858276367,
                                   "stack_info": null,
      -                            "thread": 139910820048960,
      +                            "thread": 139667813142592,
                                   "threadName": "MainThread",
      -                            "time_consumption": 0.000701904296875
      +                            "time_consumption": 0.0005340576171875
                               },
                               {
                                   "args": [
                                       "{'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': ['one', 2, 3, '4'], 'dict': {'1': '1', '2': 2, '3': 'three', '4': '4'}}",
                                       ""
                                   ],
      -                            "asctime": "2024-09-22 00:06:08,852",
      -                            "created": 1726956368.8529592,
      +                            "asctime": "2024-09-22 12:01:39,863",
      +                            "created": 1726999299.8633728,
                                   "exc_info": null,
                                   "exc_text": null,
                                   "filename": "test.py",
      @@ -4362,8 +4352,8 @@
                                               "{ 'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': [ 'one', 2, 3, '4' ], 'dict': { '1': '1', '2': 2, '3': 'three', '4': '4' } }",
                                               ""
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,852",
      -                                    "created": 1726956368.8527157,
      +                                    "asctime": "2024-09-22 12:01:39,863",
      +                                    "created": 1726999299.863136,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test.py",
      @@ -4373,15 +4363,15 @@
                                           "lineno": 22,
                                           "message": "Result (Instance data after increasing data_version): { 'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': [ 'one', 2, 3, '4' ], 'dict': { '1': '1', '2': 2, '3': 'three', '4': '4' } } ()",
                                           "module": "test",
      -                                    "msecs": 852.0,
      +                                    "msecs": 863.0,
                                           "msg": "Result (%s): %s (%s)",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 111.40966415405273,
      +                                    "relativeCreated": 111.78278923034668,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       },
                                       {
      @@ -4391,8 +4381,8 @@
                                               "{ 'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': [ 'one', 2, 3, '4' ], 'dict': { '1': '1', '2': 2, '3': 'three', '4': '4' } }",
                                               ""
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,852",
      -                                    "created": 1726956368.8528404,
      +                                    "asctime": "2024-09-22 12:01:39,863",
      +                                    "created": 1726999299.8632417,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test.py",
      @@ -4402,41 +4392,41 @@
                                           "lineno": 26,
                                           "message": "Expectation (Instance data after increasing data_version): result = { 'str': '__string__', 'unicode': '__unicode__', 'integer': 34, 'float': 2.71828, 'list': [ 'one', 2, 3, '4' ], 'dict': { '1': '1', '2': 2, '3': 'three', '4': '4' } } ()",
                                           "module": "test",
      -                                    "msecs": 852.0,
      +                                    "msecs": 863.0,
                                           "msg": "Expectation (%s): result %s %s (%s)",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 111.53435707092285,
      +                                    "relativeCreated": 111.88840866088867,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       }
                                   ],
      -                            "msecs": 852.0,
      +                            "msecs": 863.0,
                                   "msg": "Instance data after increasing data_version is correct (Content %s and Type is %s).",
                                   "name": "__tLogger__",
                                   "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                            "process": 281640,
      +                            "process": 291252,
                                   "processName": "MainProcess",
      -                            "relativeCreated": 111.65308952331543,
      +                            "relativeCreated": 112.01953887939453,
                                   "stack_info": null,
      -                            "thread": 139910820048960,
      +                            "thread": 139667813142592,
                                   "threadName": "MainThread",
      -                            "time_consumption": 0.00011873245239257812
      +                            "time_consumption": 0.00013113021850585938
                               }
                           ],
      -                    "thread": 139910820048960,
      +                    "thread": 139667813142592,
                           "threadName": "MainThread",
      -                    "time_consumption": 0.0027227401733398438,
      -                    "time_finished": "2024-09-22 00:06:08,852",
      -                    "time_start": "2024-09-22 00:06:08,850"
      +                    "time_consumption": 0.0018754005432128906,
      +                    "time_finished": "2024-09-22 12:01:39,863",
      +                    "time_start": "2024-09-22 12:01:39,861"
                       },
                       "caching.property_cache_pickle: Test internal key usage": {
                           "args": null,
      -                    "asctime": "2024-09-22 00:06:08,859",
      -                    "created": 1726956368.8595614,
      +                    "asctime": "2024-09-22 12:01:39,869",
      +                    "created": 1726999299.8695648,
                           "exc_info": null,
                           "exc_text": null,
                           "filename": "__init__.py",
      @@ -4447,13 +4437,13 @@
                           "message": "caching.property_cache_pickle: Test internal key usage",
                           "module": "__init__",
                           "moduleLogger": [],
      -                    "msecs": 859.0,
      +                    "msecs": 869.0,
                           "msg": "caching.property_cache_pickle: Test internal key usage",
                           "name": "__tLogger__",
                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/report/__init__.py",
      -                    "process": 281640,
      +                    "process": 291252,
                           "processName": "MainProcess",
      -                    "relativeCreated": 118.2553768157959,
      +                    "relativeCreated": 118.21150779724121,
                           "stack_info": null,
                           "testcaseLogger": [
                               {
      @@ -4461,8 +4451,8 @@
                                       "property_cache_pickle",
                                       "True"
                                   ],
      -                            "asctime": "2024-09-22 00:06:08,860",
      -                            "created": 1726956368.860379,
      +                            "asctime": "2024-09-22 12:01:39,870",
      +                            "created": 1726999299.8705044,
                                   "exc_info": null,
                                   "exc_text": null,
                                   "filename": "test_helpers.py",
      @@ -4475,8 +4465,8 @@
                                   "moduleLogger": [
                                       {
                                           "args": [],
      -                                    "asctime": "2024-09-22 00:06:08,859",
      -                                    "created": 1726956368.8596687,
      +                                    "asctime": "2024-09-22 12:01:39,869",
      +                                    "created": 1726999299.8696918,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test_helpers.py",
      @@ -4486,23 +4476,23 @@
                                           "lineno": 17,
                                           "message": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
                                           "module": "test_helpers",
      -                                    "msecs": 859.0,
      +                                    "msecs": 869.0,
                                           "msg": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 118.3626651763916,
      +                                    "relativeCreated": 118.33858489990234,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       },
                                       {
                                           "args": [
                                               "/home/dirk/my_repositories/unittest/caching/unittest/output_data/internal_keys_test.pkl"
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,859",
      -                                    "created": 1726956368.859775,
      +                                    "asctime": "2024-09-22 12:01:39,869",
      +                                    "created": 1726999299.869826,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test_helpers.py",
      @@ -4512,36 +4502,36 @@
                                           "lineno": 21,
                                           "message": "Initialising cached class with /home/dirk/my_repositories/unittest/caching/unittest/output_data/internal_keys_test.pkl as cache file.",
                                           "module": "test_helpers",
      -                                    "msecs": 859.0,
      +                                    "msecs": 869.0,
                                           "msg": "Initialising cached class with %s as cache file.",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 118.4689998626709,
      +                                    "relativeCreated": 118.47281455993652,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       }
                                   ],
      -                            "msecs": 860.0,
      +                            "msecs": 870.0,
                                   "msg": "Initialising %s (load_all_on_init=%s).",
                                   "name": "__tLogger__",
                                   "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
      -                            "process": 281640,
      +                            "process": 291252,
                                   "processName": "MainProcess",
      -                            "relativeCreated": 119.07291412353516,
      +                            "relativeCreated": 119.15111541748047,
                                   "stack_info": null,
      -                            "thread": 139910820048960,
      +                            "thread": 139667813142592,
                                   "threadName": "MainThread",
      -                            "time_consumption": 0.0006039142608642578
      +                            "time_consumption": 0.0006783008575439453
                               },
                               {
                                   "args": [
                                       "property_cache_pickle"
                                   ],
      -                            "asctime": "2024-09-22 00:06:08,860",
      -                            "created": 1726956368.86073,
      +                            "asctime": "2024-09-22 12:01:39,870",
      +                            "created": 1726999299.8709216,
                                   "exc_info": null,
                                   "exc_text": null,
                                   "filename": "test_internal_keys.py",
      @@ -4556,8 +4546,8 @@
                                           "args": [
                                               "{'_property_cache_uid_': 'no uid', '__property_cache_uid_': 'no second uid', '_property_cache_data_version_': 'no data version', '__property_cache_data_version_': 'no second data version'}"
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,860",
      -                                    "created": 1726956368.8606594,
      +                                    "asctime": "2024-09-22 12:01:39,870",
      +                                    "created": 1726999299.870809,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test_internal_keys.py",
      @@ -4567,37 +4557,37 @@
                                           "lineno": 20,
                                           "message": "Using storage object of cache class for comparison: {'_property_cache_uid_': 'no uid', '__property_cache_uid_': 'no second uid', '_property_cache_data_version_': 'no data version', '__property_cache_data_version_': 'no second data version'}",
                                           "module": "test_internal_keys",
      -                                    "msecs": 860.0,
      +                                    "msecs": 870.0,
                                           "msg": "Using storage object of cache class for comparison: %s",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_internal_keys.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 119.3532943725586,
      +                                    "relativeCreated": 119.45581436157227,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       }
                                   ],
      -                            "msecs": 860.0,
      +                            "msecs": 870.0,
                                   "msg": "Extracting storage object from %s for comparison.",
                                   "name": "__tLogger__",
                                   "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_internal_keys.py",
      -                            "process": 281640,
      +                            "process": 291252,
                                   "processName": "MainProcess",
      -                            "relativeCreated": 119.42386627197266,
      +                            "relativeCreated": 119.5683479309082,
                                   "stack_info": null,
      -                            "thread": 139910820048960,
      +                            "thread": 139667813142592,
                                   "threadName": "MainThread",
      -                            "time_consumption": 7.05718994140625e-05
      +                            "time_consumption": 0.0001125335693359375
                               },
                               {
                                   "args": [
                                       "{'_property_cache_uid_': 'no uid', '__property_cache_uid_': 'no second uid', '_property_cache_data_version_': 'no data version', '__property_cache_data_version_': 'no second data version'}",
                                       ""
                                   ],
      -                            "asctime": "2024-09-22 00:06:08,860",
      -                            "created": 1726956368.8609889,
      +                            "asctime": "2024-09-22 12:01:39,871",
      +                            "created": 1726999299.8713791,
                                   "exc_info": null,
                                   "exc_text": null,
                                   "filename": "test.py",
      @@ -4614,8 +4604,8 @@
                                               "{ '_property_cache_uid_': 'no uid', '__property_cache_uid_': 'no second uid', '_property_cache_data_version_': 'no data version', '__property_cache_data_version_': 'no second data version' }",
                                               ""
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,860",
      -                                    "created": 1726956368.8608396,
      +                                    "asctime": "2024-09-22 12:01:39,871",
      +                                    "created": 1726999299.8711085,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test.py",
      @@ -4625,15 +4615,15 @@
                                           "lineno": 22,
                                           "message": "Result (Cache): { '_property_cache_uid_': 'no uid', '__property_cache_uid_': 'no second uid', '_property_cache_data_version_': 'no data version', '__property_cache_data_version_': 'no second data version' } ()",
                                           "module": "test",
      -                                    "msecs": 860.0,
      +                                    "msecs": 871.0,
                                           "msg": "Result (%s): %s (%s)",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 119.53353881835938,
      +                                    "relativeCreated": 119.75526809692383,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       },
                                       {
      @@ -4643,8 +4633,8 @@
                                               "{ '_property_cache_uid_': 'no uid', '__property_cache_uid_': 'no second uid', '_property_cache_data_version_': 'no data version', '__property_cache_data_version_': 'no second data version' }",
                                               ""
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,860",
      -                                    "created": 1726956368.8609078,
      +                                    "asctime": "2024-09-22 12:01:39,871",
      +                                    "created": 1726999299.8712373,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test.py",
      @@ -4654,37 +4644,37 @@
                                           "lineno": 26,
                                           "message": "Expectation (Cache): result = { '_property_cache_uid_': 'no uid', '__property_cache_uid_': 'no second uid', '_property_cache_data_version_': 'no data version', '__property_cache_data_version_': 'no second data version' } ()",
                                           "module": "test",
      -                                    "msecs": 860.0,
      +                                    "msecs": 871.0,
                                           "msg": "Expectation (%s): result %s %s (%s)",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 119.60172653198242,
      +                                    "relativeCreated": 119.88401412963867,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       }
                                   ],
      -                            "msecs": 860.0,
      +                            "msecs": 871.0,
                                   "msg": "Cache is correct (Content %s and Type is %s).",
                                   "name": "__tLogger__",
                                   "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                            "process": 281640,
      +                            "process": 291252,
                                   "processName": "MainProcess",
      -                            "relativeCreated": 119.68278884887695,
      +                            "relativeCreated": 120.0258731842041,
                                   "stack_info": null,
      -                            "thread": 139910820048960,
      +                            "thread": 139667813142592,
                                   "threadName": "MainThread",
      -                            "time_consumption": 8.106231689453125e-05
      +                            "time_consumption": 0.0001418590545654297
                               },
                               {
                                   "args": [
                                       "5",
                                       ""
                                   ],
      -                            "asctime": "2024-09-22 00:06:08,861",
      -                            "created": 1726956368.8611882,
      +                            "asctime": "2024-09-22 12:01:39,871",
      +                            "created": 1726999299.8717508,
                                   "exc_info": null,
                                   "exc_text": null,
                                   "filename": "test.py",
      @@ -4701,8 +4691,8 @@
                                               "5",
                                               ""
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,861",
      -                                    "created": 1726956368.8610828,
      +                                    "asctime": "2024-09-22 12:01:39,871",
      +                                    "created": 1726999299.8715463,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test.py",
      @@ -4712,15 +4702,15 @@
                                           "lineno": 22,
                                           "message": "Result (Keyfilter returnvalue for 5 ()): 5 ()",
                                           "module": "test",
      -                                    "msecs": 861.0,
      +                                    "msecs": 871.0,
                                           "msg": "Result (%s): %s (%s)",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 119.77672576904297,
      +                                    "relativeCreated": 120.1930046081543,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       },
                                       {
      @@ -4730,8 +4720,8 @@
                                               "5",
                                               ""
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,861",
      -                                    "created": 1726956368.8611372,
      +                                    "asctime": "2024-09-22 12:01:39,871",
      +                                    "created": 1726999299.8716495,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test.py",
      @@ -4741,41 +4731,41 @@
                                           "lineno": 26,
                                           "message": "Expectation (Keyfilter returnvalue for 5 ()): result = 5 ()",
                                           "module": "test",
      -                                    "msecs": 861.0,
      +                                    "msecs": 871.0,
                                           "msg": "Expectation (%s): result %s %s (%s)",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 119.83108520507812,
      +                                    "relativeCreated": 120.29623985290527,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       }
                                   ],
      -                            "msecs": 861.0,
      +                            "msecs": 871.0,
                                   "msg": "Keyfilter returnvalue for 5 () is correct (Content %s and Type is %s).",
                                   "name": "__tLogger__",
                                   "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                            "process": 281640,
      +                            "process": 291252,
                                   "processName": "MainProcess",
      -                            "relativeCreated": 119.88210678100586,
      +                            "relativeCreated": 120.39756774902344,
                                   "stack_info": null,
      -                            "thread": 139910820048960,
      +                            "thread": 139667813142592,
                                   "threadName": "MainThread",
      -                            "time_consumption": 5.1021575927734375e-05
      +                            "time_consumption": 0.00010132789611816406
                               }
                           ],
      -                    "thread": 139910820048960,
      +                    "thread": 139667813142592,
                           "threadName": "MainThread",
      -                    "time_consumption": 0.001626729965209961,
      -                    "time_finished": "2024-09-22 00:06:08,861",
      -                    "time_start": "2024-09-22 00:06:08,859"
      +                    "time_consumption": 0.0021860599517822266,
      +                    "time_finished": "2024-09-22 12:01:39,871",
      +                    "time_start": "2024-09-22 12:01:39,869"
                       },
                       "caching.property_cache_pickle: Test partially initialised PICKLE-Cache-Object": {
                           "args": null,
      -                    "asctime": "2024-09-22 00:06:08,842",
      -                    "created": 1726956368.8423376,
      +                    "asctime": "2024-09-22 12:01:39,855",
      +                    "created": 1726999299.8551068,
                           "exc_info": null,
                           "exc_text": null,
                           "filename": "__init__.py",
      @@ -4786,13 +4776,13 @@
                           "message": "caching.property_cache_pickle: Test partially initialised PICKLE-Cache-Object",
                           "module": "__init__",
                           "moduleLogger": [],
      -                    "msecs": 842.0,
      +                    "msecs": 855.0,
                           "msg": "caching.property_cache_pickle: Test partially initialised PICKLE-Cache-Object",
                           "name": "__tLogger__",
                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/report/__init__.py",
      -                    "process": 281640,
      +                    "process": 291252,
                           "processName": "MainProcess",
      -                    "relativeCreated": 101.03154182434082,
      +                    "relativeCreated": 103.75356674194336,
                           "stack_info": null,
                           "testcaseLogger": [
                               {
      @@ -4800,8 +4790,8 @@
                                       "property_cache_pickle",
                                       "False"
                                   ],
      -                            "asctime": "2024-09-22 00:06:08,842",
      -                            "created": 1726956368.8427904,
      +                            "asctime": "2024-09-22 12:01:39,855",
      +                            "created": 1726999299.8555126,
                                   "exc_info": null,
                                   "exc_text": null,
                                   "filename": "test_helpers.py",
      @@ -4814,8 +4804,8 @@
                                   "moduleLogger": [
                                       {
                                           "args": [],
      -                                    "asctime": "2024-09-22 00:06:08,842",
      -                                    "created": 1726956368.842438,
      +                                    "asctime": "2024-09-22 12:01:39,855",
      +                                    "created": 1726999299.855225,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test_helpers.py",
      @@ -4825,23 +4815,23 @@
                                           "lineno": 17,
                                           "message": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
                                           "module": "test_helpers",
      -                                    "msecs": 842.0,
      +                                    "msecs": 855.0,
                                           "msg": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 101.13191604614258,
      +                                    "relativeCreated": 103.87182235717773,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       },
                                       {
                                           "args": [
                                               "/home/dirk/my_repositories/unittest/caching/unittest/output_data/no_load_on_init.pkl"
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,842",
      -                                    "created": 1726956368.8425362,
      +                                    "asctime": "2024-09-22 12:01:39,855",
      +                                    "created": 1726999299.8553317,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test_helpers.py",
      @@ -4851,34 +4841,34 @@
                                           "lineno": 21,
                                           "message": "Initialising cached class with /home/dirk/my_repositories/unittest/caching/unittest/output_data/no_load_on_init.pkl as cache file.",
                                           "module": "test_helpers",
      -                                    "msecs": 842.0,
      +                                    "msecs": 855.0,
                                           "msg": "Initialising cached class with %s as cache file.",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 101.23014450073242,
      +                                    "relativeCreated": 103.97839546203613,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       }
                                   ],
      -                            "msecs": 842.0,
      +                            "msecs": 855.0,
                                   "msg": "Initialising %s (load_all_on_init=%s).",
                                   "name": "__tLogger__",
                                   "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
      -                            "process": 281640,
      +                            "process": 291252,
                                   "processName": "MainProcess",
      -                            "relativeCreated": 101.48429870605469,
      +                            "relativeCreated": 104.15935516357422,
                                   "stack_info": null,
      -                            "thread": 139910820048960,
      +                            "thread": 139667813142592,
                                   "threadName": "MainThread",
      -                            "time_consumption": 0.0002541542053222656
      +                            "time_consumption": 0.00018095970153808594
                               },
                               {
                                   "args": [],
      -                            "asctime": "2024-09-22 00:06:08,843",
      -                            "created": 1726956368.8435483,
      +                            "asctime": "2024-09-22 12:01:39,855",
      +                            "created": 1726999299.8559484,
                                   "exc_info": null,
                                   "exc_text": null,
                                   "filename": "test_no_load_on_init.py",
      @@ -4889,15 +4879,15 @@
                                   "message": "Partially initialising cache object by requesting some information.",
                                   "module": "test_no_load_on_init",
                                   "moduleLogger": [],
      -                            "msecs": 843.0,
      +                            "msecs": 855.0,
                                   "msg": "Partially initialising cache object by requesting some information.",
                                   "name": "__tLogger__",
                                   "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_no_load_on_init.py",
      -                            "process": 281640,
      +                            "process": 291252,
                                   "processName": "MainProcess",
      -                            "relativeCreated": 102.24223136901855,
      +                            "relativeCreated": 104.59518432617188,
                                   "stack_info": null,
      -                            "thread": 139910820048960,
      +                            "thread": 139667813142592,
                                   "threadName": "MainThread",
                                   "time_consumption": 0.0
                               },
      @@ -4905,8 +4895,8 @@
                                   "args": [
                                       "property_cache_pickle"
                                   ],
      -                            "asctime": "2024-09-22 00:06:08,843",
      -                            "created": 1726956368.8438442,
      +                            "asctime": "2024-09-22 12:01:39,856",
      +                            "created": 1726999299.8561795,
                                   "exc_info": null,
                                   "exc_text": null,
                                   "filename": "test_no_load_on_init.py",
      @@ -4919,10 +4909,10 @@
                                   "moduleLogger": [
                                       {
                                           "args": [
      -                                        "{'str': 'string', 'integer': 17, 'unicode': 'unicode'}"
      +                                        "{'integer': 17, 'str': 'string', 'unicode': 'unicode'}"
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,843",
      -                                    "created": 1726956368.8437774,
      +                                    "asctime": "2024-09-22 12:01:39,856",
      +                                    "created": 1726999299.856116,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test_no_load_on_init.py",
      @@ -4930,39 +4920,39 @@
                                           "levelname": "INFO",
                                           "levelno": 20,
                                           "lineno": 23,
      -                                    "message": "Using storage object of cache class for comparison: {'str': 'string', 'integer': 17, 'unicode': 'unicode'}",
      +                                    "message": "Using storage object of cache class for comparison: {'integer': 17, 'str': 'string', 'unicode': 'unicode'}",
                                           "module": "test_no_load_on_init",
      -                                    "msecs": 843.0,
      +                                    "msecs": 856.0,
                                           "msg": "Using storage object of cache class for comparison: %s",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_no_load_on_init.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 102.47135162353516,
      +                                    "relativeCreated": 104.76279258728027,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       }
                                   ],
      -                            "msecs": 843.0,
      +                            "msecs": 856.0,
                                   "msg": "Extracting storage object from %s for comparison.",
                                   "name": "__tLogger__",
                                   "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_no_load_on_init.py",
      -                            "process": 281640,
      +                            "process": 291252,
                                   "processName": "MainProcess",
      -                            "relativeCreated": 102.5381088256836,
      +                            "relativeCreated": 104.82621192932129,
                                   "stack_info": null,
      -                            "thread": 139910820048960,
      +                            "thread": 139667813142592,
                                   "threadName": "MainThread",
      -                            "time_consumption": 6.67572021484375e-05
      +                            "time_consumption": 6.341934204101562e-05
                               },
                               {
                                   "args": [
      -                                "{'str': 'string', 'integer': 17, 'unicode': 'unicode'}",
      +                                "{'integer': 17, 'str': 'string', 'unicode': 'unicode'}",
                                       ""
                                   ],
      -                            "asctime": "2024-09-22 00:06:08,844",
      -                            "created": 1726956368.8440735,
      +                            "asctime": "2024-09-22 12:01:39,856",
      +                            "created": 1726999299.8564296,
                                   "exc_info": null,
                                   "exc_text": null,
                                   "filename": "test.py",
      @@ -4970,17 +4960,17 @@
                                   "levelname": "INFO",
                                   "levelno": 20,
                                   "lineno": 184,
      -                            "message": "Cache object is correct (Content {'str': 'string', 'integer': 17, 'unicode': 'unicode'} and Type is ).",
      +                            "message": "Cache object is correct (Content {'integer': 17, 'str': 'string', 'unicode': 'unicode'} and Type is ).",
                                   "module": "test",
                                   "moduleLogger": [
                                       {
                                           "args": [
                                               "Cache object",
      -                                        "{ 'str': 'string', 'integer': 17, 'unicode': 'unicode' }",
      +                                        "{ 'integer': 17, 'str': 'string', 'unicode': 'unicode' }",
                                               ""
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,843",
      -                                    "created": 1726956368.8439457,
      +                                    "asctime": "2024-09-22 12:01:39,856",
      +                                    "created": 1726999299.8562906,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test.py",
      @@ -4988,17 +4978,17 @@
                                           "levelname": "DEBUG",
                                           "levelno": 10,
                                           "lineno": 22,
      -                                    "message": "Result (Cache object): { 'str': 'string', 'integer': 17, 'unicode': 'unicode' } ()",
      +                                    "message": "Result (Cache object): { 'integer': 17, 'str': 'string', 'unicode': 'unicode' } ()",
                                           "module": "test",
      -                                    "msecs": 843.0,
      +                                    "msecs": 856.0,
                                           "msg": "Result (%s): %s (%s)",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 102.63967514038086,
      +                                    "relativeCreated": 104.93731498718262,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       },
                                       {
      @@ -5008,8 +4998,8 @@
                                               "{ 'str': 'string', 'unicode': 'unicode', 'integer': 17 }",
                                               ""
                                           ],
      -                                    "asctime": "2024-09-22 00:06:08,844",
      -                                    "created": 1726956368.844007,
      +                                    "asctime": "2024-09-22 12:01:39,856",
      +                                    "created": 1726999299.8563578,
                                           "exc_info": null,
                                           "exc_text": null,
                                           "filename": "test.py",
      @@ -5019,40 +5009,40 @@
                                           "lineno": 26,
                                           "message": "Expectation (Cache object): result = { 'str': 'string', 'unicode': 'unicode', 'integer': 17 } ()",
                                           "module": "test",
      -                                    "msecs": 844.0,
      +                                    "msecs": 856.0,
                                           "msg": "Expectation (%s): result %s %s (%s)",
                                           "name": "__unittest__",
                                           "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                                    "process": 281640,
      +                                    "process": 291252,
                                           "processName": "MainProcess",
      -                                    "relativeCreated": 102.70094871520996,
      +                                    "relativeCreated": 105.00454902648926,
                                           "stack_info": null,
      -                                    "thread": 139910820048960,
      +                                    "thread": 139667813142592,
                                           "threadName": "MainThread"
                                       }
                                   ],
      -                            "msecs": 844.0,
      +                            "msecs": 856.0,
                                   "msg": "Cache object is correct (Content %s and Type is %s).",
                                   "name": "__tLogger__",
                                   "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
      -                            "process": 281640,
      +                            "process": 291252,
                                   "processName": "MainProcess",
      -                            "relativeCreated": 102.7674674987793,
      +                            "relativeCreated": 105.07631301879883,
                                   "stack_info": null,
      -                            "thread": 139910820048960,
      +                            "thread": 139667813142592,
                                   "threadName": "MainThread",
      -                            "time_consumption": 6.651878356933594e-05
      +                            "time_consumption": 7.176399230957031e-05
                               }
                           ],
      -                    "thread": 139910820048960,
      +                    "thread": 139667813142592,
                           "threadName": "MainThread",
      -                    "time_consumption": 0.0017359256744384766,
      -                    "time_finished": "2024-09-22 00:06:08,844",
      -                    "time_start": "2024-09-22 00:06:08,842"
      +                    "time_consumption": 0.0013227462768554688,
      +                    "time_finished": "2024-09-22 12:01:39,856",
      +                    "time_start": "2024-09-22 12:01:39,855"
                       }
                   },
                   "testrun_id": "p3",
      -            "time_consumption": 0.04340481758117676,
      +            "time_consumption": 0.041495323181152344,
                   "uid_list_sorted": [
                       "caching.property_cache_json: Test full initialised JSON-Cache-Object",
                       "caching.property_cache_json: Test partially initialisation of JSON-Cache-Object",
      diff --git a/_testresults_/unittest.pdf b/_testresults_/unittest.pdf
      index d74ec6c..136daf1 100644
      Binary files a/_testresults_/unittest.pdf and b/_testresults_/unittest.pdf differ