diff --git a/__init__.py b/__init__.py index 4d5d2df..2555689 100644 --- a/__init__.py +++ b/__init__.py @@ -83,11 +83,11 @@ class property_cache_pickle(object): Will result on the first execution to the following output (with a long execution time): - .. literalinclude:: caching/_examples_/property_cache_pickle_1.log + .. literalinclude:: caching/_examples_/property_cache_pickle.log_1st With every following execution the time cosumption my by much smaller: - .. literalinclude:: caching/_examples_/property_cache_pickle_2.log + .. literalinclude:: caching/_examples_/property_cache_pickle.log """ DATA_VERSION_TAG = '_property_cache_data_version_' STORAGE_VERSION_TAG = '_storage_version_' @@ -283,11 +283,11 @@ class property_cache_json(property_cache_pickle): Will result on the first execution to the following output (with a long execution time): - .. literalinclude:: caching/_examples_/property_cache_json_1.log + .. literalinclude:: caching/_examples_/property_cache_json.log_1st With every following execution the time cosumption my by much smaller: - .. literalinclude:: caching/_examples_/property_cache_json_2.log + .. literalinclude:: caching/_examples_/property_cache_json.log """ def _load_only(self): diff --git a/_docs_/_downloads/94762bb00bd81e32c327265770b9c2bc/unittest.pdf b/_docs_/_downloads/94762bb00bd81e32c327265770b9c2bc/unittest.pdf index be88bb7..98d7bc6 100644 Binary files a/_docs_/_downloads/94762bb00bd81e32c327265770b9c2bc/unittest.pdf and b/_docs_/_downloads/94762bb00bd81e32c327265770b9c2bc/unittest.pdf differ diff --git a/_docs_/index.html b/_docs_/index.html index d543dbf..66cdf29 100644 --- a/_docs_/index.html +++ b/_docs_/index.html @@ -188,8 +188,8 @@

See limitations of json.

Example:

-
#!/usr/bin/env python
-# -*- coding: UTF-8 -*-
+
import sys                  # nopep8
+sys.path.append('../..')    # nopep8
 
 import caching
 import logging
@@ -245,6 +245,7 @@
         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)
@@ -269,37 +270,36 @@
     for key in data.keys():
         print(data.get(key))
     print('--------------------------------\nThe execution time was %.1fs' % (time.time()-tm))
-
 

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

Testing property_cache (json):
 --------------------------------
-2025-08-15 00:39:57,193:    DEBUG - caching - Cache file does not exists (yet).
-2025-08-15 00:39:57,193:    DEBUG - caching - Loading property for key='1' from source instance
+2025-08-15 18:51:26,642:    DEBUG - caching - Cache file does not exists (yet).
+2025-08-15 18:51:26,642:    DEBUG - caching - Loading property for key='1' from source instance
 slow get executed for __1__
-2025-08-15 00:40:00,194:    DEBUG - caching - Adding key=1, value=one with timestamp=1755211200 to chache
-2025-08-15 00:40:00,195:    DEBUG - caching - cache-file stored (cache.json)
+2025-08-15 18:51:29,643:    DEBUG - caching - Adding key=1, value=one with timestamp=1755276689 to chache
+2025-08-15 18:51:29,644:    DEBUG - caching - cache-file stored (cache.json)
 one
-2025-08-15 00:40:00,195:    DEBUG - caching - Loading property for key='2' from source instance
+2025-08-15 18:51:29,644:    DEBUG - caching - Loading property for key='2' from source instance
 slow get executed for __2__
-2025-08-15 00:40:03,195:    DEBUG - caching - Adding key=2, value=two with timestamp=1755211203 to chache
-2025-08-15 00:40:03,197:    DEBUG - caching - cache-file stored (cache.json)
+2025-08-15 18:51:32,644:    DEBUG - caching - Adding key=2, value=two with timestamp=1755276692 to chache
+2025-08-15 18:51:32,645:    DEBUG - caching - cache-file stored (cache.json)
 two
-2025-08-15 00:40:03,197:    DEBUG - caching - Loading property for key='three' from source instance
+2025-08-15 18:51:32,645:    DEBUG - caching - Loading property for key='three' from source instance
 slow get executed for __three__
-2025-08-15 00:40:06,197:    DEBUG - caching - Adding key=three, value=three with timestamp=1755211206 to chache
-2025-08-15 00:40:06,198:    DEBUG - caching - cache-file stored (cache.json)
+2025-08-15 18:51:35,646:    DEBUG - caching - Adding key=three, value=three with timestamp=1755276695 to chache
+2025-08-15 18:51:35,647:    DEBUG - caching - cache-file stored (cache.json)
 three
-2025-08-15 00:40:06,198:    DEBUG - caching - Loading property for key='four' from source instance
+2025-08-15 18:51:35,647:    DEBUG - caching - Loading property for key='four' from source instance
 slow get executed for __four__
-2025-08-15 00:40:09,199:    DEBUG - caching - Adding key=four, value=four with timestamp=1755211209 to chache
-2025-08-15 00:40:09,200:    DEBUG - caching - cache-file stored (cache.json)
+2025-08-15 18:51:38,648:    DEBUG - caching - Adding key=four, value=four with timestamp=1755276698 to chache
+2025-08-15 18:51:38,649:    DEBUG - caching - cache-file stored (cache.json)
 four
-2025-08-15 00:40:09,200:    DEBUG - caching - Loading property for key='five' from source instance
+2025-08-15 18:51:38,649:    DEBUG - caching - Loading property for key='five' from source instance
 slow get executed for __five__
-2025-08-15 00:40:12,201:    DEBUG - caching - Adding key=five, value=five with timestamp=1755211212 to chache
-2025-08-15 00:40:12,202:    DEBUG - caching - cache-file stored (cache.json)
+2025-08-15 18:51:41,650:    DEBUG - caching - Adding key=five, value=five with timestamp=1755276701 to chache
+2025-08-15 18:51:41,650:    DEBUG - caching - cache-file stored (cache.json)
 five
 --------------------------------
 The execution time was 15.0s
@@ -308,19 +308,19 @@
 

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

Testing property_cache (json):
 --------------------------------
-2025-08-15 00:40:12,245:    DEBUG - caching - Loading properties from cache (cache.json)
-2025-08-15 00:40:12,245:    DEBUG - caching - Providing property for '1' from cache
+2025-08-15 18:51:41,765:    DEBUG - caching - Loading properties from cache (cache.json)
+2025-08-15 18:51:41,765:    DEBUG - caching - Providing property for '1' from cache
 one
-2025-08-15 00:40:12,245:    DEBUG - caching - Providing property for '2' from cache
+2025-08-15 18:51:41,765:    DEBUG - caching - Providing property for '2' from cache
 two
-2025-08-15 00:40:12,245:    DEBUG - caching - Loading property for key='three' from source instance
+2025-08-15 18:51:41,765:    DEBUG - caching - Loading property for key='three' from source instance
 slow get executed for __three__
-2025-08-15 00:40:15,246:    DEBUG - caching - Adding key=three, value=three with timestamp=1755211215 to chache
-2025-08-15 00:40:15,246:    DEBUG - caching - cache-file stored (cache.json)
+2025-08-15 18:51:44,767:    DEBUG - caching - Adding key=three, value=three with timestamp=1755276704 to chache
+2025-08-15 18:51:44,768:    DEBUG - caching - cache-file stored (cache.json)
 three
-2025-08-15 00:40:15,247:    DEBUG - caching - Providing property for 'four' from cache
+2025-08-15 18:51:44,768:    DEBUG - caching - Providing property for 'four' from cache
 four
-2025-08-15 00:40:15,247:    DEBUG - caching - Providing property for 'five' from cache
+2025-08-15 18:51:44,768:    DEBUG - caching - Providing property for 'five' from cache
 five
 --------------------------------
 The execution time was 3.0s
@@ -367,8 +367,8 @@ if the conditions for the cache usage are given.

Example:

-
#!/usr/bin/env python
-# -*- coding: UTF-8 -*-
+
import sys                  # nopep8
+sys.path.append('../..')    # nopep8
 
 import caching
 import logging
@@ -424,6 +424,7 @@ 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) @@ -453,31 +454,31 @@ 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):
 --------------------------------
-2025-08-15 00:40:15,331:    DEBUG - caching - Cache file does not exists (yet).
-2025-08-15 00:40:15,331:    DEBUG - caching - Loading property for key='1' from source instance
+2025-08-15 18:51:44,846:    DEBUG - caching - Cache file does not exists (yet).
+2025-08-15 18:51:44,846:    DEBUG - caching - Loading property for key='1' from source instance
 slow get executed for __1__
-2025-08-15 00:40:18,331:    DEBUG - caching - Adding key=1, value=one with timestamp=1755211218 to chache
-2025-08-15 00:40:18,332:    DEBUG - caching - cache-file stored (cache.pickle)
+2025-08-15 18:51:47,847:    DEBUG - caching - Adding key=1, value=one with timestamp=1755276707 to chache
+2025-08-15 18:51:47,847:    DEBUG - caching - cache-file stored (cache.pickle)
 one
-2025-08-15 00:40:18,332:    DEBUG - caching - Loading property for key='2' from source instance
+2025-08-15 18:51:47,848:    DEBUG - caching - Loading property for key='2' from source instance
 slow get executed for __2__
-2025-08-15 00:40:21,333:    DEBUG - caching - Adding key=2, value=two with timestamp=1755211221 to chache
-2025-08-15 00:40:21,334:    DEBUG - caching - cache-file stored (cache.pickle)
+2025-08-15 18:51:50,848:    DEBUG - caching - Adding key=2, value=two with timestamp=1755276710 to chache
+2025-08-15 18:51:50,849:    DEBUG - caching - cache-file stored (cache.pickle)
 two
-2025-08-15 00:40:21,334:    DEBUG - caching - Loading property for key='three' from source instance
+2025-08-15 18:51:50,849:    DEBUG - caching - Loading property for key='three' from source instance
 slow get executed for __three__
-2025-08-15 00:40:24,335:    DEBUG - caching - Adding key=three, value=three with timestamp=1755211224 to chache
-2025-08-15 00:40:24,335:    DEBUG - caching - cache-file stored (cache.pickle)
+2025-08-15 18:51:53,851:    DEBUG - caching - Adding key=three, value=three with timestamp=1755276713 to chache
+2025-08-15 18:51:53,852:    DEBUG - caching - cache-file stored (cache.pickle)
 three
-2025-08-15 00:40:24,336:    DEBUG - caching - Loading property for key='four' from source instance
+2025-08-15 18:51:53,852:    DEBUG - caching - Loading property for key='four' from source instance
 slow get executed for __four__
-2025-08-15 00:40:27,336:    DEBUG - caching - Adding key=four, value=four with timestamp=1755211227 to chache
-2025-08-15 00:40:27,337:    DEBUG - caching - cache-file stored (cache.pickle)
+2025-08-15 18:51:56,852:    DEBUG - caching - Adding key=four, value=four with timestamp=1755276716 to chache
+2025-08-15 18:51:56,853:    DEBUG - caching - cache-file stored (cache.pickle)
 four
-2025-08-15 00:40:27,338:    DEBUG - caching - Loading property for key='five' from source instance
+2025-08-15 18:51:56,853:    DEBUG - caching - Loading property for key='five' from source instance
 slow get executed for __five__
-2025-08-15 00:40:30,338:    DEBUG - caching - Adding key=five, value=five with timestamp=1755211230 to chache
-2025-08-15 00:40:30,340:    DEBUG - caching - cache-file stored (cache.pickle)
+2025-08-15 18:51:59,855:    DEBUG - caching - Adding key=five, value=five with timestamp=1755276719 to chache
+2025-08-15 18:51:59,855:    DEBUG - caching - cache-file stored (cache.pickle)
 five
 --------------------------------
 The execution time was 15.0s
@@ -486,19 +487,19 @@ if the conditions for the cache usage are given.

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

Testing property_cache (pickle):
 --------------------------------
-2025-08-15 00:40:30,387:    DEBUG - caching - Loading properties from cache (cache.pickle)
-2025-08-15 00:40:30,387:    DEBUG - caching - Providing property for '1' from cache
+2025-08-15 18:51:59,975:    DEBUG - caching - Loading properties from cache (cache.pickle)
+2025-08-15 18:51:59,975:    DEBUG - caching - Providing property for '1' from cache
 one
-2025-08-15 00:40:30,387:    DEBUG - caching - Providing property for '2' from cache
+2025-08-15 18:51:59,975:    DEBUG - caching - Providing property for '2' from cache
 two
-2025-08-15 00:40:30,387:    DEBUG - caching - Loading property for key='three' from source instance
+2025-08-15 18:51:59,976:    DEBUG - caching - Loading property for key='three' from source instance
 slow get executed for __three__
-2025-08-15 00:40:33,388:    DEBUG - caching - Adding key=three, value=three with timestamp=1755211233 to chache
-2025-08-15 00:40:33,388:    DEBUG - caching - cache-file stored (cache.pickle)
+2025-08-15 18:52:02,976:    DEBUG - caching - Adding key=three, value=three with timestamp=1755276722 to chache
+2025-08-15 18:52:02,977:    DEBUG - caching - cache-file stored (cache.pickle)
 three
-2025-08-15 00:40:33,389:    DEBUG - caching - Providing property for 'four' from cache
+2025-08-15 18:52:02,977:    DEBUG - caching - Providing property for 'four' from cache
 four
-2025-08-15 00:40:33,389:    DEBUG - caching - Providing property for 'five' from cache
+2025-08-15 18:52:02,977:    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 7d45f02..1ea5f8b 100644
--- a/_docs_/searchindex.js
+++ b/_docs_/searchindex.js
@@ -1 +1 @@
-Search.setIndex({"alltitles":{"1. Copyright and Related Rights.":[[3,"copyright-and-related-rights"],[10,"copyright-and-related-rights"]],"2. Waiver.":[[3,"waiver"],[10,"waiver"]],"3. Public License Fallback.":[[3,"public-license-fallback"],[10,"public-license-fallback"]],"4. Limitations and Disclaimers.":[[3,"limitations-and-disclaimers"],[10,"limitations-and-disclaimers"]],"CC0 1.0 Universal licence":[[3,"cc0-1-0-universal-licence"],[10,"cc0-1-0-universal-licence"]],"Licence":[[3,null],[10,null]],"License for Sphinx":[[4,null],[11,null]],"Required properties for the source_instance":[[0,null]],"Statement of Purpose":[[3,"statement-of-purpose"],[10,"statement-of-purpose"]],"The MIT License (MIT)":[[2,null],[9,null]],"The cache will be used, if all following conditions are given":[[0,null]],"Zero-Clause BSD Licence":[[3,"zero-clause-bsd-licence"],[10,"zero-clause-bsd-licence"]],"caching (Caching Module)":[[0,"caching-caching-module"]],"caching package":[[0,null]]},"docnames":["index","venv/lib/python3.13/site-packages/alabaster-1.0.0.dist-info/LICENSE","venv/lib/python3.13/site-packages/imagesize-1.4.1.dist-info/LICENSE","venv/lib/python3.13/site-packages/roman_numerals_py-3.1.0.dist-info/licenses/LICENCE","venv/lib/python3.13/site-packages/sphinx-8.2.3.dist-info/licenses/LICENSE","venv/lib/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/base","venv/lib/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/class","venv/lib/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/module","venv/lib64/python3.13/site-packages/alabaster-1.0.0.dist-info/LICENSE","venv/lib64/python3.13/site-packages/imagesize-1.4.1.dist-info/LICENSE","venv/lib64/python3.13/site-packages/roman_numerals_py-3.1.0.dist-info/licenses/LICENCE","venv/lib64/python3.13/site-packages/sphinx-8.2.3.dist-info/licenses/LICENSE","venv/lib64/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/base","venv/lib64/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/class","venv/lib64/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/module"],"envversion":{"sphinx":65,"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.13/site-packages/alabaster-1.0.0.dist-info/LICENSE.rst","venv/lib/python3.13/site-packages/imagesize-1.4.1.dist-info/LICENSE.rst","venv/lib/python3.13/site-packages/roman_numerals_py-3.1.0.dist-info/licenses/LICENCE.rst","venv/lib/python3.13/site-packages/sphinx-8.2.3.dist-info/licenses/LICENSE.rst","venv/lib/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/base.rst","venv/lib/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/class.rst","venv/lib/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/module.rst","venv/lib64/python3.13/site-packages/alabaster-1.0.0.dist-info/LICENSE.rst","venv/lib64/python3.13/site-packages/imagesize-1.4.1.dist-info/LICENSE.rst","venv/lib64/python3.13/site-packages/roman_numerals_py-3.1.0.dist-info/licenses/LICENCE.rst","venv/lib64/python3.13/site-packages/sphinx-8.2.3.dist-info/licenses/LICENSE.rst","venv/lib64/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/base.rst","venv/lib64/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/class.rst","venv/lib64/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/module.rst"],"indexentries":{},"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,"","AGE_TAG"],[0,2,1,"","DATA_TAG"],[0,2,1,"","DATA_VERSION_TAG"],[0,2,1,"","STORAGE_VERSION"],[0,2,1,"","STORAGE_VERSION_TAG"],[0,2,1,"","UID_TAG"],[0,3,1,"","add_source_get_keys"],[0,3,1,"","full_update"],[0,3,1,"","get"]]},"objnames":{"0":["py","module","Python module"],"1":["py","class","Python class"],"2":["py","attribute","Python attribute"],"3":["py","method","Python method"]},"objtypes":{"0":"py:module","1":"py:class","2":"py:attribute","3":"py:method"},"terms":{"":[0,3,10],"0":0,"00":0,"03":0,"06":0,"08":0,"09":0,"1":0,"11":[3,10],"12":0,"15":0,"1755211200":0,"1755211203":0,"1755211206":0,"1755211209":0,"1755211212":0,"1755211215":0,"1755211218":0,"1755211221":0,"1755211224":0,"1755211227":0,"1755211230":0,"1755211233":0,"18":0,"193":0,"194":0,"195":0,"197":0,"198":0,"199":0,"1996":[3,10],"1f":0,"2":0,"200":0,"2007":[4,11],"201":0,"2010":[1,8],"2011":[1,8],"2016":[2,9],"202":0,"2020":[1,8],"2024":[3,10],"2025":[0,4,11],"21":0,"24":0,"245":0,"246":0,"247":0,"27":0,"3":0,"30":0,"33":0,"331":0,"332":0,"333":0,"334":0,"335":0,"336":0,"337":0,"338":0,"340":0,"387":0,"388":0,"389":0,"39":0,"40":0,"57":0,"8":0,"9":[3,10],"96":[3,10],"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,4,8,9,11],"BY":[1,4,8,11],"FOR":[1,2,3,4,8,9,10,11],"For":[3,10],"IF":[1,4,8,11],"IN":[1,2,3,4,8,9,10,11],"If":0,"In":[3,10],"It":0,"NO":[1,2,3,4,8,9,10,11],"NOT":[1,2,4,8,9,11],"No":[3,10],"OF":[1,2,3,4,8,9,10,11],"ON":[1,4,8,11],"OR":[1,2,3,4,8,9,10,11],"SUCH":[1,4,8,11],"THE":[1,2,3,4,8,9,10,11],"TO":[1,2,3,4,8,9,10,11],"The":[1,3,8,10],"These":[3,10],"To":[3,10],"WITH":[2,3,9,10],"Will":0,"With":0,"__":0,"__1__":0,"__2__":0,"__five__":0,"__four__":0,"__init__":0,"__main__":0,"__name__":0,"__three__":0,"_age_":0,"_cach":0,"_data_":0,"_property_cache_data_version_":0,"_property_cache_uid_":0,"_storage_version_":0,"abandon":[3,10],"abov":[1,2,4,8,9,11],"absenc":[3,10],"account":[3,10],"accuraci":[3,10],"acknowledg":[3,10],"action":[2,3,9,10],"ad":0,"adam":[3,10],"adapt":[3,10],"add":0,"add_source_get_kei":0,"addit":[3,10],"advertis":[3,10],"advis":[1,4,8,11],"affect":[3,10],"affirm":[3,10],"ag":0,"against":[3,10],"age_tag":0,"alder":0,"all":[2,3,4,9,10,11],"also":0,"alwai":0,"amend":[3,10],"an":[2,3,9,10],"ani":[1,2,3,4,8,9,10,11],"appli":[3,10],"applic":[3,10],"ar":[1,3,4,8,10,11],"arg":0,"argument":0,"aris":[1,2,3,4,8,9,10,11],"armin":[1,8],"asctim":0,"assert":[3,10],"associ":[2,3,9,10],"attributeerror":0,"author":[0,2,3,4,9,10,11],"authorship":[3,10],"automat":[3,10],"avail":[0,3,10],"base":[0,1,3,8,10],"basicconfig":0,"been":0,"below":[3,4,10,11],"benefit":[3,10],"between":0,"bin":0,"binari":[1,4,8,11],"block":[7,14],"bool":0,"bsd":[4,11],"build":[3,10],"busi":[1,4,8,11],"c":[1,3,4,8,10,11],"cache_filenam":0,"callback":0,"callback_on_data_storag":0,"can":[3,10],"cancel":[3,10],"case":[3,10],"caus":[1,3,4,8,10,11],"certain":[3,10],"chach":0,"chang":0,"charg":[2,9],"checksum":0,"claim":[2,3,9,10],"class":0,"claus":[4,11],"clear":[3,10],"code":[0,1,4,8,11],"commerci":[3,10],"common":[3,10],"commun":[3,10],"compens":[3,10],"competit":[3,10],"complet":0,"concern":[3,10],"condit":[1,2,4,8,9,11],"confer":[3,10],"configur":0,"connect":[2,3,9,10],"consent":[3,10],"consequenti":[1,3,4,8,10,11],"consider":[3,10],"contempl":[3,10],"contract":[1,2,3,4,8,9,10,11],"contrari":[3,10],"contravent":[3,10],"contribut":[3,10],"contributor":[1,4,8,11],"copi":[2,3,9,10],"copyright":[1,2,4,8,9,11],"correspond":[3,10],"cosumpt":0,"council":[3,10],"creativ":[3,10],"creator":[3,10],"cultur":[3,10],"current":[0,3,10],"damag":[1,2,3,4,8,9,10,11],"data":[0,1,3,4,8,10,11],"data_tag":0,"data_vers":0,"data_version_tag":0,"databas":[3,10],"date":[3,10],"de":0,"deal":[2,9],"debug":0,"deem":[3,10],"def":0,"default":0,"defect":[3,10],"defin":[3,10],"depict":[3,10],"deriv":[1,8],"descript":0,"detail":0,"detriment":[3,10],"direct":[1,3,4,8,10,11],"dirk":0,"disclaim":[1,4,8,11],"discover":[3,10],"displai":[3,10],"disrupt":[3,10],"dissemin":[3,10],"distribut":[1,2,3,4,8,9,10,11],"do":[2,9],"document":[0,1,2,3,4,8,9,10,11],"doe":0,"don":0,"durat":[3,10],"duti":[3,10],"e":0,"each":[0,3,10],"ec":[3,10],"effect":[3,10],"effort":[3,10],"either":[3,10],"elect":[3,10],"els":0,"endblock":[7,14],"endfor":[7,14],"endif":[7,14],"endors":[1,8],"enjoy":[3,10],"env":0,"equit":[3,10],"equival":[3,10],"error":[3,10],"escap":[5,6,7,12,13,14],"european":[3,10],"even":[1,4,8,11],"event":[1,2,3,4,8,9,10,11],"everi":0,"exampl":0,"except":0,"exclus":[3,10],"execut":0,"exemplari":[1,4,8,11],"exercis":[3,10],"exist":[0,3,10],"expect":[3,10],"express":[1,2,3,4,8,9,10,11],"extens":[3,10],"extent":[3,10],"extract":[3,10],"f":0,"fals":0,"fear":[3,10],"fee":[3,10],"file":[0,2,4,9,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":[1,8],"form":[1,3,4,8,10,11],"format":0,"four":0,"free":[2,3,9,10],"freeli":[3,10],"from":[0,1,2,3,8,9,10],"full_upd":0,"fulli":[3,10],"fullnam":[5,6,7,12,13,14],"function":0,"furnish":[2,9],"further":[3,10],"futur":[3,10],"g":0,"gain":[3,10],"gener":0,"get":0,"getattr":0,"good":[1,4,8,11],"grant":[2,3,9,10],"greater":[3,10],"greatest":[3,10],"ha":[3,10],"had":0,"he":[3,10],"heir":[3,10],"held":[3,10],"her":[3,10],"herebi":[2,3,9,10],"hi":[3,10],"hold":0,"holder":[1,2,4,8,9,11],"howev":[1,4,8,11],"i":[0,1,2,3,4,8,9,10,11],"id":0,"ideal":[3,10],"ident":0,"ii":[3,10],"iii":[3,10],"imag":[3,10],"implement":[3,10],"impli":[1,2,3,4,8,9,10,11],"import":0,"improv":0,"incident":[1,4,8,11],"includ":[1,2,3,4,8,9,10,11],"incorpor":[3,10],"increas":0,"indic":[4,11],"indirect":[1,3,4,8,10,11],"ineffect":[3,10],"inform":0,"infring":[3,10],"initialis":0,"initiallis":0,"instanc":0,"instead":0,"int":0,"intend":[3,10],"interrupt":[1,4,8,11],"invalid":[3,10],"irrevoc":[3,10],"item":[7,14],"its":[3,10],"iv":[3,10],"jeff":[1,8],"json":0,"judg":[3,10],"jurisdict":[3,10],"k":0,"kei":0,"kenneth":[1,8],"key_fiv":0,"key_four":0,"key_on":0,"key_thre":0,"key_two":0,"kind":[2,3,9,10],"knowledg":[3,10],"known":[3,10],"kwarg":0,"larg":[3,10],"latent":[3,10],"later":[3,10],"law":[3,10],"legal":[3,10],"less":0,"level":0,"levelnam":0,"liabil":[1,2,4,8,9,11],"liabl":[1,2,3,4,8,9,10,11],"licenc":[4,11],"like":[3,10],"limit":[0,1,2,4,8,9,11],"list":[0,1,4,8,11],"load":0,"load_all_on_init":0,"log":0,"long":0,"loss":[1,3,4,8,10,11],"made":[3,10],"mai":[1,3,8,10],"make":[3,10],"march":[3,10],"materi":[1,4,8,11],"max_ag":0,"maximum":[0,3,10],"mean":[3,10],"medium":[3,10],"member":[3,10],"merchant":[1,2,3,4,8,9,10,11],"merg":[2,9],"messag":0,"met":[1,4,8,11],"method":0,"mockeri":0,"modif":[1,4,8,11],"modifi":[2,3,9,10],"modul":[7,14],"moral":[3,10],"more":0,"most":[3,10],"motiv":[3,10],"mount":0,"much":0,"must":[1,4,8,11],"my":0,"n":0,"name":[0,1,8],"nation":[3,10],"necessari":[3,10],"need":0,"neglig":[1,3,4,8,10,11],"neighbor":[3,10],"non":[3,10],"none":0,"noninfring":[2,9],"notic":[1,2,4,8,9,11],"now":[3,10],"nthe":0,"number":[0,3,10],"object":0,"oblig":[3,10],"obtain":[2,3,9,10],"offer":[3,10],"one":0,"onli":0,"origin":[1,3,8,10],"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,"overtli":[3,10],"owner":[1,3,8,10],"paragraph":[3,10],"paramet":0,"parent":0,"parliament":[3,10],"part":[3,10],"parti":[3,10],"partial":[3,10],"particular":[1,2,3,4,8,9,10,11],"patent":[3,10],"perform":[3,10],"perman":[3,10],"permiss":[1,2,3,8,9,10],"permit":[1,2,3,4,8,9,10,11],"person":[2,3,9,10],"pertain":[3,10],"pickl":0,"portion":[2,9],"possibl":[1,3,4,8,10,11],"present":[3,10],"preserv":[3,10],"prevent":0,"previou":0,"print":0,"print_n_sleep":0,"prior":[1,8],"privaci":[3,10],"procur":[1,4,8,11],"product":[1,3,8,10],"profit":[1,3,4,8,10,11],"project":[3,4,10,11],"promot":[1,3,8,10],"property_cach":0,"property_cache_json":0,"property_cache_pickl":0,"protect":[3,10],"provid":[0,1,2,3,4,8,9,10,11],"publicli":[3,10],"publish":[2,9],"purpos":[1,2,4,8,9,11],"python":0,"quiet":[3,10],"read":0,"reason":[3,10],"redistribut":[1,3,4,8,10,11],"regard":[3,10],"reitz":[1,8],"reliabl":[3,10],"relinquish":[3,10],"remain":[3,10],"remaind":[3,10],"represent":[3,10],"reproduc":[1,3,4,8,10,11],"reput":[3,10],"requir":[3,10],"resciss":[3,10],"reserv":[1,4,8,11],"respect":[3,10],"respons":[3,10],"restrict":[2,9],"result":[0,3,10],"retain":[1,3,4,8,10,11],"return":0,"return_source_on_non":0,"reus":[3,10],"revoc":[3,10],"right":[1,2,4,8,9,11],"ronach":[1,8],"royalti":[3,10],"rubric":[7,14],"scientif":[3,10],"second":0,"see":[0,4,11],"self":0,"sell":[2,9],"servic":[1,4,8,11],"shall":[1,2,3,4,8,9,10,11],"she":[3,10],"shibukawa":[2,9],"should":[0,3,10],"similar":[3,10],"sleep":0,"sleep_between_kei":0,"slow":0,"smaller":0,"so":[2,3,9,10],"softwar":[1,2,3,4,8,9,10,11],"some":[1,8],"somewher":0,"sourc":[0,1,4,8,11],"special":[1,3,4,8,10,11],"specif":[1,8],"statutori":[3,10],"stdout":0,"storag":0,"storage_vers":0,"storage_version_tag":0,"store":0,"store_on_get":0,"str":0,"stream":0,"strict":[1,4,8,11],"string":0,"structur":0,"subject":[2,3,9,10],"sublicens":[2,3,9,10],"submodul":0,"subsequ":[3,10],"substanti":[2,9],"substitut":[1,4,8,11],"successor":[3,10],"sudo":0,"super":0,"support":0,"surrend":[3,10],"sy":0,"t":0,"take":[0,3,10],"team":[4,11],"term":[3,10],"termin":[3,10],"territori":[3,10],"test":0,"test_slow_data":0,"test_slow_data_cach":0,"theme":[1,8],"theori":[1,4,8,11],"thereof":[3,10],"thi":[0,1,2,3,4,8,9,10,11],"those":[3,10],"three":0,"through":[3,10],"throughout":[3,10],"time":[0,3,10],"timestamp":0,"titl":[3,10],"tm":0,"tort":[1,2,4,8,9,11],"tortiou":[3,10],"trademark":[3,10],"transfer":[0,3,10],"translat":[3,10],"treati":[3,10],"true":0,"try":0,"tupl":0,"turner":[3,10],"two":[0,4,11],"type":0,"uid":0,"uid_tag":0,"uncondit":[3,10],"uncondition":[3,10],"under":[3,4,10,11],"underlin":[5,6,7,12,13,14],"understand":[3,10],"unfair":[3,10],"unicod":0,"uniqu":0,"unittest":0,"unknown":[3,10],"unless":[4,11],"upon":[3,10],"us":[1,2,3,4,8,9,10,11],"usag":0,"usr":0,"utf":0,"valu":0,"version":[0,3,10],"voluntarili":[3,10],"wa":[0,3,10],"wai":[1,4,8,11],"waiv":[3,10],"want":0,"warranti":[1,2,3,4,8,9,10,11],"well":[3,10],"whatsoev":[3,10],"when":0,"where":0,"whether":[1,2,3,4,8,9,10,11],"which":0,"whom":[2,9],"wish":[3,10],"without":[1,2,3,4,8,9,10,11],"work":[1,3,8,10],"world":[3,10],"worldwid":[3,10],"write":0,"written":[1,8],"yet":0,"yoshiki":[2,9],"you":0},"titles":["caching package","<no title>","The MIT License (MIT)","Licence","License for Sphinx","<no title>","<no title>","<no title>","<no title>","The MIT License (MIT)","Licence","License for Sphinx","<no title>","<no title>","<no title>"],"titleterms":{"0":[3,10],"1":[3,10],"2":[3,10],"3":[3,10],"4":[3,10],"The":[0,2,9],"all":0,"ar":0,"bsd":[3,10],"cach":0,"cc0":[3,10],"claus":[3,10],"condit":0,"copyright":[3,10],"disclaim":[3,10],"fallback":[3,10],"follow":0,"given":0,"licenc":[3,10],"licens":[2,3,4,9,10,11],"limit":[3,10],"mit":[2,9],"modul":0,"packag":0,"properti":0,"public":[3,10],"purpos":[3,10],"relat":[3,10],"requir":0,"right":[3,10],"source_inst":0,"sphinx":[4,11],"statement":[3,10],"univers":[3,10],"us":0,"waiver":[3,10],"zero":[3,10]}})
\ No newline at end of file
+Search.setIndex({"alltitles":{"1. Copyright and Related Rights.":[[3,"copyright-and-related-rights"],[10,"copyright-and-related-rights"]],"2. Waiver.":[[3,"waiver"],[10,"waiver"]],"3. Public License Fallback.":[[3,"public-license-fallback"],[10,"public-license-fallback"]],"4. Limitations and Disclaimers.":[[3,"limitations-and-disclaimers"],[10,"limitations-and-disclaimers"]],"CC0 1.0 Universal licence":[[3,"cc0-1-0-universal-licence"],[10,"cc0-1-0-universal-licence"]],"Licence":[[3,null],[10,null]],"License for Sphinx":[[4,null],[11,null]],"Required properties for the source_instance":[[0,null]],"Statement of Purpose":[[3,"statement-of-purpose"],[10,"statement-of-purpose"]],"The MIT License (MIT)":[[2,null],[9,null]],"The cache will be used, if all following conditions are given":[[0,null]],"Zero-Clause BSD Licence":[[3,"zero-clause-bsd-licence"],[10,"zero-clause-bsd-licence"]],"caching (Caching Module)":[[0,"caching-caching-module"]],"caching package":[[0,null]]},"docnames":["index","venv/lib/python3.13/site-packages/alabaster-1.0.0.dist-info/LICENSE","venv/lib/python3.13/site-packages/imagesize-1.4.1.dist-info/LICENSE","venv/lib/python3.13/site-packages/roman_numerals_py-3.1.0.dist-info/licenses/LICENCE","venv/lib/python3.13/site-packages/sphinx-8.2.3.dist-info/licenses/LICENSE","venv/lib/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/base","venv/lib/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/class","venv/lib/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/module","venv/lib64/python3.13/site-packages/alabaster-1.0.0.dist-info/LICENSE","venv/lib64/python3.13/site-packages/imagesize-1.4.1.dist-info/LICENSE","venv/lib64/python3.13/site-packages/roman_numerals_py-3.1.0.dist-info/licenses/LICENCE","venv/lib64/python3.13/site-packages/sphinx-8.2.3.dist-info/licenses/LICENSE","venv/lib64/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/base","venv/lib64/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/class","venv/lib64/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/module"],"envversion":{"sphinx":65,"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.13/site-packages/alabaster-1.0.0.dist-info/LICENSE.rst","venv/lib/python3.13/site-packages/imagesize-1.4.1.dist-info/LICENSE.rst","venv/lib/python3.13/site-packages/roman_numerals_py-3.1.0.dist-info/licenses/LICENCE.rst","venv/lib/python3.13/site-packages/sphinx-8.2.3.dist-info/licenses/LICENSE.rst","venv/lib/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/base.rst","venv/lib/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/class.rst","venv/lib/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/module.rst","venv/lib64/python3.13/site-packages/alabaster-1.0.0.dist-info/LICENSE.rst","venv/lib64/python3.13/site-packages/imagesize-1.4.1.dist-info/LICENSE.rst","venv/lib64/python3.13/site-packages/roman_numerals_py-3.1.0.dist-info/licenses/LICENCE.rst","venv/lib64/python3.13/site-packages/sphinx-8.2.3.dist-info/licenses/LICENSE.rst","venv/lib64/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/base.rst","venv/lib64/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/class.rst","venv/lib64/python3.13/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]],"age_tag (caching.property_cache_pickle attribute)":[[0,"caching.property_cache_pickle.AGE_TAG",false]],"caching":[[0,"module-caching",false]],"data_tag (caching.property_cache_pickle attribute)":[[0,"caching.property_cache_pickle.DATA_TAG",false]],"data_version_tag (caching.property_cache_pickle attribute)":[[0,"caching.property_cache_pickle.DATA_VERSION_TAG",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]],"storage_version (caching.property_cache_pickle attribute)":[[0,"caching.property_cache_pickle.STORAGE_VERSION",false]],"storage_version_tag (caching.property_cache_pickle attribute)":[[0,"caching.property_cache_pickle.STORAGE_VERSION_TAG",false]],"uid_tag (caching.property_cache_pickle attribute)":[[0,"caching.property_cache_pickle.UID_TAG",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,"","AGE_TAG"],[0,2,1,"","DATA_TAG"],[0,2,1,"","DATA_VERSION_TAG"],[0,2,1,"","STORAGE_VERSION"],[0,2,1,"","STORAGE_VERSION_TAG"],[0,2,1,"","UID_TAG"],[0,3,1,"","add_source_get_keys"],[0,3,1,"","full_update"],[0,3,1,"","get"]]},"objnames":{"0":["py","module","Python module"],"1":["py","class","Python class"],"2":["py","attribute","Python attribute"],"3":["py","method","Python method"]},"objtypes":{"0":"py:module","1":"py:class","2":"py:attribute","3":"py:method"},"terms":{"":[0,3,10],"0":0,"02":0,"08":0,"1":0,"11":[3,10],"15":0,"1755276689":0,"1755276692":0,"1755276695":0,"1755276698":0,"1755276701":0,"1755276704":0,"1755276707":0,"1755276710":0,"1755276713":0,"1755276716":0,"1755276719":0,"1755276722":0,"18":0,"1996":[3,10],"1f":0,"2":0,"2007":[4,11],"2010":[1,8],"2011":[1,8],"2016":[2,9],"2020":[1,8],"2024":[3,10],"2025":[0,4,11],"26":0,"29":0,"3":0,"32":0,"35":0,"38":0,"41":0,"44":0,"47":0,"50":0,"51":0,"52":0,"53":0,"56":0,"59":0,"642":0,"643":0,"644":0,"645":0,"646":0,"647":0,"648":0,"649":0,"650":0,"765":0,"767":0,"768":0,"8":0,"846":0,"847":0,"848":0,"849":0,"851":0,"852":0,"853":0,"855":0,"9":[3,10],"96":[3,10],"975":0,"976":0,"977":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,4,8,9,11],"BY":[1,4,8,11],"FOR":[1,2,3,4,8,9,10,11],"For":[3,10],"IF":[1,4,8,11],"IN":[1,2,3,4,8,9,10,11],"If":0,"In":[3,10],"It":0,"NO":[1,2,3,4,8,9,10,11],"NOT":[1,2,4,8,9,11],"No":[3,10],"OF":[1,2,3,4,8,9,10,11],"ON":[1,4,8,11],"OR":[1,2,3,4,8,9,10,11],"SUCH":[1,4,8,11],"THE":[1,2,3,4,8,9,10,11],"TO":[1,2,3,4,8,9,10,11],"The":[1,3,8,10],"These":[3,10],"To":[3,10],"WITH":[2,3,9,10],"Will":0,"With":0,"__":0,"__1__":0,"__2__":0,"__five__":0,"__four__":0,"__init__":0,"__main__":0,"__name__":0,"__three__":0,"_age_":0,"_cach":0,"_data_":0,"_property_cache_data_version_":0,"_property_cache_uid_":0,"_storage_version_":0,"abandon":[3,10],"abov":[1,2,4,8,9,11],"absenc":[3,10],"account":[3,10],"accuraci":[3,10],"acknowledg":[3,10],"action":[2,3,9,10],"ad":0,"adam":[3,10],"adapt":[3,10],"add":0,"add_source_get_kei":0,"addit":[3,10],"advertis":[3,10],"advis":[1,4,8,11],"affect":[3,10],"affirm":[3,10],"ag":0,"against":[3,10],"age_tag":0,"alder":0,"all":[2,3,4,9,10,11],"also":0,"alwai":0,"amend":[3,10],"an":[2,3,9,10],"ani":[1,2,3,4,8,9,10,11],"append":0,"appli":[3,10],"applic":[3,10],"ar":[1,3,4,8,10,11],"arg":0,"argument":0,"aris":[1,2,3,4,8,9,10,11],"armin":[1,8],"asctim":0,"assert":[3,10],"associ":[2,3,9,10],"attributeerror":0,"author":[0,2,3,4,9,10,11],"authorship":[3,10],"automat":[3,10],"avail":[0,3,10],"base":[0,1,3,8,10],"basicconfig":0,"been":0,"below":[3,4,10,11],"benefit":[3,10],"between":0,"binari":[1,4,8,11],"block":[7,14],"bool":0,"bsd":[4,11],"build":[3,10],"busi":[1,4,8,11],"c":[1,3,4,8,10,11],"cache_filenam":0,"callback":0,"callback_on_data_storag":0,"can":[3,10],"cancel":[3,10],"case":[3,10],"caus":[1,3,4,8,10,11],"certain":[3,10],"chach":0,"chang":0,"charg":[2,9],"checksum":0,"claim":[2,3,9,10],"class":0,"claus":[4,11],"clear":[3,10],"code":[1,4,8,11],"commerci":[3,10],"common":[3,10],"commun":[3,10],"compens":[3,10],"competit":[3,10],"complet":0,"concern":[3,10],"condit":[1,2,4,8,9,11],"confer":[3,10],"configur":0,"connect":[2,3,9,10],"consent":[3,10],"consequenti":[1,3,4,8,10,11],"consider":[3,10],"contempl":[3,10],"contract":[1,2,3,4,8,9,10,11],"contrari":[3,10],"contravent":[3,10],"contribut":[3,10],"contributor":[1,4,8,11],"copi":[2,3,9,10],"copyright":[1,2,4,8,9,11],"correspond":[3,10],"cosumpt":0,"council":[3,10],"creativ":[3,10],"creator":[3,10],"cultur":[3,10],"current":[0,3,10],"damag":[1,2,3,4,8,9,10,11],"data":[0,1,3,4,8,10,11],"data_tag":0,"data_vers":0,"data_version_tag":0,"databas":[3,10],"date":[3,10],"de":0,"deal":[2,9],"debug":0,"deem":[3,10],"def":0,"default":0,"defect":[3,10],"defin":[3,10],"depict":[3,10],"deriv":[1,8],"descript":0,"detail":0,"detriment":[3,10],"direct":[1,3,4,8,10,11],"dirk":0,"disclaim":[1,4,8,11],"discover":[3,10],"displai":[3,10],"disrupt":[3,10],"dissemin":[3,10],"distribut":[1,2,3,4,8,9,10,11],"do":[2,9],"document":[0,1,2,3,4,8,9,10,11],"doe":0,"don":0,"durat":[3,10],"duti":[3,10],"e":0,"each":[0,3,10],"ec":[3,10],"effect":[3,10],"effort":[3,10],"either":[3,10],"elect":[3,10],"els":0,"endblock":[7,14],"endfor":[7,14],"endif":[7,14],"endors":[1,8],"enjoy":[3,10],"equit":[3,10],"equival":[3,10],"error":[3,10],"escap":[5,6,7,12,13,14],"european":[3,10],"even":[1,4,8,11],"event":[1,2,3,4,8,9,10,11],"everi":0,"exampl":0,"except":0,"exclus":[3,10],"execut":0,"exemplari":[1,4,8,11],"exercis":[3,10],"exist":[0,3,10],"expect":[3,10],"express":[1,2,3,4,8,9,10,11],"extens":[3,10],"extent":[3,10],"extract":[3,10],"f":0,"fals":0,"fear":[3,10],"fee":[3,10],"file":[0,2,4,9,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":[1,8],"form":[1,3,4,8,10,11],"format":0,"four":0,"free":[2,3,9,10],"freeli":[3,10],"from":[0,1,2,3,8,9,10],"full_upd":0,"fulli":[3,10],"fullnam":[5,6,7,12,13,14],"function":0,"furnish":[2,9],"further":[3,10],"futur":[3,10],"g":0,"gain":[3,10],"gener":0,"get":0,"getattr":0,"good":[1,4,8,11],"grant":[2,3,9,10],"greater":[3,10],"greatest":[3,10],"ha":[3,10],"had":0,"he":[3,10],"heir":[3,10],"held":[3,10],"her":[3,10],"herebi":[2,3,9,10],"hi":[3,10],"hold":0,"holder":[1,2,4,8,9,11],"howev":[1,4,8,11],"i":[0,1,2,3,4,8,9,10,11],"id":0,"ideal":[3,10],"ident":0,"ii":[3,10],"iii":[3,10],"imag":[3,10],"implement":[3,10],"impli":[1,2,3,4,8,9,10,11],"import":0,"improv":0,"incident":[1,4,8,11],"includ":[1,2,3,4,8,9,10,11],"incorpor":[3,10],"increas":0,"indic":[4,11],"indirect":[1,3,4,8,10,11],"ineffect":[3,10],"inform":0,"infring":[3,10],"initialis":0,"initiallis":0,"instanc":0,"instead":0,"int":0,"intend":[3,10],"interrupt":[1,4,8,11],"invalid":[3,10],"irrevoc":[3,10],"item":[7,14],"its":[3,10],"iv":[3,10],"jeff":[1,8],"json":0,"judg":[3,10],"jurisdict":[3,10],"k":0,"kei":0,"kenneth":[1,8],"key_fiv":0,"key_four":0,"key_on":0,"key_thre":0,"key_two":0,"kind":[2,3,9,10],"knowledg":[3,10],"known":[3,10],"kwarg":0,"larg":[3,10],"latent":[3,10],"later":[3,10],"law":[3,10],"legal":[3,10],"less":0,"level":0,"levelnam":0,"liabil":[1,2,4,8,9,11],"liabl":[1,2,3,4,8,9,10,11],"licenc":[4,11],"like":[3,10],"limit":[0,1,2,4,8,9,11],"list":[0,1,4,8,11],"load":0,"load_all_on_init":0,"log":0,"long":0,"loss":[1,3,4,8,10,11],"made":[3,10],"mai":[1,3,8,10],"make":[3,10],"march":[3,10],"materi":[1,4,8,11],"max_ag":0,"maximum":[0,3,10],"mean":[3,10],"medium":[3,10],"member":[3,10],"merchant":[1,2,3,4,8,9,10,11],"merg":[2,9],"messag":0,"met":[1,4,8,11],"method":0,"mockeri":0,"modif":[1,4,8,11],"modifi":[2,3,9,10],"modul":[7,14],"moral":[3,10],"more":0,"most":[3,10],"motiv":[3,10],"mount":0,"much":0,"must":[1,4,8,11],"my":0,"n":0,"name":[0,1,8],"nation":[3,10],"necessari":[3,10],"need":0,"neglig":[1,3,4,8,10,11],"neighbor":[3,10],"non":[3,10],"none":0,"noninfring":[2,9],"nopep8":0,"notic":[1,2,4,8,9,11],"now":[3,10],"nthe":0,"number":[0,3,10],"object":0,"oblig":[3,10],"obtain":[2,3,9,10],"offer":[3,10],"one":0,"onli":0,"origin":[1,3,8,10],"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,"overtli":[3,10],"owner":[1,3,8,10],"paragraph":[3,10],"paramet":0,"parent":0,"parliament":[3,10],"part":[3,10],"parti":[3,10],"partial":[3,10],"particular":[1,2,3,4,8,9,10,11],"patent":[3,10],"path":0,"perform":[3,10],"perman":[3,10],"permiss":[1,2,3,8,9,10],"permit":[1,2,3,4,8,9,10,11],"person":[2,3,9,10],"pertain":[3,10],"pickl":0,"portion":[2,9],"possibl":[1,3,4,8,10,11],"present":[3,10],"preserv":[3,10],"prevent":0,"previou":0,"print":0,"print_n_sleep":0,"prior":[1,8],"privaci":[3,10],"procur":[1,4,8,11],"product":[1,3,8,10],"profit":[1,3,4,8,10,11],"project":[3,4,10,11],"promot":[1,3,8,10],"property_cach":0,"property_cache_json":0,"property_cache_pickl":0,"protect":[3,10],"provid":[0,1,2,3,4,8,9,10,11],"publicli":[3,10],"publish":[2,9],"purpos":[1,2,4,8,9,11],"quiet":[3,10],"read":0,"reason":[3,10],"redistribut":[1,3,4,8,10,11],"regard":[3,10],"reitz":[1,8],"reliabl":[3,10],"relinquish":[3,10],"remain":[3,10],"remaind":[3,10],"represent":[3,10],"reproduc":[1,3,4,8,10,11],"reput":[3,10],"requir":[3,10],"resciss":[3,10],"reserv":[1,4,8,11],"respect":[3,10],"respons":[3,10],"restrict":[2,9],"result":[0,3,10],"retain":[1,3,4,8,10,11],"return":0,"return_source_on_non":0,"reus":[3,10],"revoc":[3,10],"right":[1,2,4,8,9,11],"ronach":[1,8],"royalti":[3,10],"rubric":[7,14],"scientif":[3,10],"second":0,"see":[0,4,11],"self":0,"sell":[2,9],"servic":[1,4,8,11],"shall":[1,2,3,4,8,9,10,11],"she":[3,10],"shibukawa":[2,9],"should":[0,3,10],"similar":[3,10],"sleep":0,"sleep_between_kei":0,"slow":0,"smaller":0,"so":[2,3,9,10],"softwar":[1,2,3,4,8,9,10,11],"some":[1,8],"somewher":0,"sourc":[0,1,4,8,11],"special":[1,3,4,8,10,11],"specif":[1,8],"statutori":[3,10],"stdout":0,"storag":0,"storage_vers":0,"storage_version_tag":0,"store":0,"store_on_get":0,"str":0,"stream":0,"strict":[1,4,8,11],"string":0,"structur":0,"subject":[2,3,9,10],"sublicens":[2,3,9,10],"submodul":0,"subsequ":[3,10],"substanti":[2,9],"substitut":[1,4,8,11],"successor":[3,10],"sudo":0,"super":0,"support":0,"surrend":[3,10],"sy":0,"t":0,"take":[0,3,10],"team":[4,11],"term":[3,10],"termin":[3,10],"territori":[3,10],"test":0,"test_slow_data":0,"test_slow_data_cach":0,"theme":[1,8],"theori":[1,4,8,11],"thereof":[3,10],"thi":[0,1,2,3,4,8,9,10,11],"those":[3,10],"three":0,"through":[3,10],"throughout":[3,10],"time":[0,3,10],"timestamp":0,"titl":[3,10],"tm":0,"tort":[1,2,4,8,9,11],"tortiou":[3,10],"trademark":[3,10],"transfer":[0,3,10],"translat":[3,10],"treati":[3,10],"true":0,"try":0,"tupl":0,"turner":[3,10],"two":[0,4,11],"type":0,"uid":0,"uid_tag":0,"uncondit":[3,10],"uncondition":[3,10],"under":[3,4,10,11],"underlin":[5,6,7,12,13,14],"understand":[3,10],"unfair":[3,10],"unicod":0,"uniqu":0,"unittest":0,"unknown":[3,10],"unless":[4,11],"upon":[3,10],"us":[1,2,3,4,8,9,10,11],"usag":0,"valu":0,"version":[0,3,10],"voluntarili":[3,10],"wa":[0,3,10],"wai":[1,4,8,11],"waiv":[3,10],"want":0,"warranti":[1,2,3,4,8,9,10,11],"well":[3,10],"whatsoev":[3,10],"when":0,"where":0,"whether":[1,2,3,4,8,9,10,11],"which":0,"whom":[2,9],"wish":[3,10],"without":[1,2,3,4,8,9,10,11],"work":[1,3,8,10],"world":[3,10],"worldwid":[3,10],"write":0,"written":[1,8],"yet":0,"yoshiki":[2,9],"you":0},"titles":["caching package","<no title>","The MIT License (MIT)","Licence","License for Sphinx","<no title>","<no title>","<no title>","<no title>","The MIT License (MIT)","Licence","License for Sphinx","<no title>","<no title>","<no title>"],"titleterms":{"0":[3,10],"1":[3,10],"2":[3,10],"3":[3,10],"4":[3,10],"The":[0,2,9],"all":0,"ar":0,"bsd":[3,10],"cach":0,"cc0":[3,10],"claus":[3,10],"condit":0,"copyright":[3,10],"disclaim":[3,10],"fallback":[3,10],"follow":0,"given":0,"licenc":[3,10],"licens":[2,3,4,9,10,11],"limit":[3,10],"mit":[2,9],"modul":0,"packag":0,"properti":0,"public":[3,10],"purpos":[3,10],"relat":[3,10],"requir":0,"right":[3,10],"source_inst":0,"sphinx":[4,11],"statement":[3,10],"univers":[3,10],"us":0,"waiver":[3,10],"zero":[3,10]}})
\ No newline at end of file
diff --git a/_examples_/Makefile b/_examples_/Makefile
index 9aea2b0..f1b262b 100644
--- a/_examples_/Makefile
+++ b/_examples_/Makefile
@@ -11,15 +11,14 @@ INTERPRETER = python3
 EXAMPLES := $(wildcard *.py)
 EXAMPLES := $(filter-out config.py, $(EXAMPLES))
 LOGFILES := ${EXAMPLES:.py=.log}
+LOGFILES_1st := ${EXAMPLES:.py=.log_1st}
 
 all: $(LOGFILES)
 
 -include __make.d__/*.mk
 
-%.py_local:
-
 %.log: %.py
-	$(MAKE) $<_local
+	$(MAKE) $@_1st 2> /dev/null
 	echo -e "\e[1m  * Running example $<\e[0m"
 	$(INTERPRETER) $< > $@
 
@@ -27,4 +26,4 @@ localclean:
 clean: localclean
 	echo -e "\e[1m  * Example logs...\e[0m"
 	rm -f $(LOGFILES)
-
+	rm -f $(LOGFILES_1st)
diff --git a/_examples_/__make.d__/pre.mk b/_examples_/__make.d__/pre.mk
new file mode 100644
index 0000000..a017f29
--- /dev/null
+++ b/_examples_/__make.d__/pre.mk
@@ -0,0 +1,10 @@
+.ONESHELL:
+SHELL = /usr/bin/bash
+MAKEFLAGS += --no-print-directory
+.SILENT:
+
+test:
+	:
+%.log_1st: %.py
+	echo -e "\e[1m  * Running slow example $<\e[0m"
+	$(INTERPRETER) $< > $@
diff --git a/_requirements_/specification.pdf b/_requirements_/specification.pdf
index 00fbc3c..38ec41e 100644
Binary files a/_requirements_/specification.pdf and b/_requirements_/specification.pdf differ
diff --git a/_testresults_/unittest.json b/_testresults_/unittest.json
index f453a7e..d2eba65 100644
--- a/_testresults_/unittest.json
+++ b/_testresults_/unittest.json
@@ -644,7 +644,7 @@
         "Name": "caching",
         "State": "Released",
         "Supported Interpreters": "python3",
-        "Version": "492ddccaeb7907cd48bd7ca81cbf567b"
+        "Version": "52c295e7e5e9060dd96adbed34253518"
     },
     "testrun_list": [
         {
@@ -665,8 +665,8 @@
             "testcases": {
                 "REQ-0001": {
                     "args": null,
-                    "asctime": "2025-08-14 14:58:32,646",
-                    "created": 1755176312.6460018,
+                    "asctime": "2025-08-15 19:13:27,545",
+                    "created": 1755278007.5457585,
                     "exc_text": null,
                     "filename": "__init__.py",
                     "funcName": "testCase",
@@ -676,20 +676,20 @@
                     "message": "REQ-0001",
                     "module": "__init__",
                     "moduleLogger": [],
-                    "msecs": 646.0,
+                    "msecs": 545.0,
                     "msg": "REQ-0001",
                     "name": "__tLogger__",
                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/report/__init__.py",
-                    "process": 743412,
+                    "process": 1015645,
                     "processName": "MainProcess",
-                    "relativeCreated": 103.190093,
+                    "relativeCreated": 76.059096,
                     "stack_info": null,
                     "taskName": null,
                     "testcaseLogger": [
                         {
                             "args": [],
-                            "asctime": "2025-08-14 14:58:32,646",
-                            "created": 1755176312.646255,
+                            "asctime": "2025-08-15 19:13:27,545",
+                            "created": 1755278007.545937,
                             "exc_text": null,
                             "filename": "test_helpers.py",
                             "funcName": "clean",
@@ -701,8 +701,8 @@
                             "moduleLogger": [
                                 {
                                     "args": [],
-                                    "asctime": "2025-08-14 14:58:32,646",
-                                    "created": 1755176312.646128,
+                                    "asctime": "2025-08-15 19:13:27,545",
+                                    "created": 1755278007.5458548,
                                     "exc_text": null,
                                     "filename": "test_helpers.py",
                                     "funcName": "clean",
@@ -711,38 +711,38 @@
                                     "lineno": 17,
                                     "message": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
                                     "module": "test_helpers",
-                                    "msecs": 646.0,
+                                    "msecs": 545.0,
                                     "msg": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_helpers.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 103.315911,
+                                    "relativeCreated": 76.155206,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 646.0,
+                            "msecs": 545.0,
                             "msg": "Prepare: Cleanup before testcase execution",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_helpers.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 103.443213,
+                            "relativeCreated": 76.237705,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.0001270771026611328
+                            "time_consumption": 8.225440979003906e-05
                         },
                         {
                             "args": [
                                 "'property_cache_pickle'"
                             ],
-                            "asctime": "2025-08-14 14:58:32,647",
-                            "created": 1755176312.6471782,
+                            "asctime": "2025-08-15 19:13:27,546",
+                            "created": 1755278007.5467744,
                             "exc_text": null,
                             "filename": "test_cached_data.py",
                             "funcName": "cached_data",
@@ -754,8 +754,8 @@
                             "moduleLogger": [
                                 {
                                     "args": [],
-                                    "asctime": "2025-08-14 14:58:32,646",
-                                    "created": 1755176312.6463902,
+                                    "asctime": "2025-08-15 19:13:27,546",
+                                    "created": 1755278007.5460448,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_load_cache",
@@ -764,24 +764,24 @@
                                     "lineno": 237,
                                     "message": "Cache file does not exists (yet).",
                                     "module": "__init__",
-                                    "msecs": 646.0,
+                                    "msecs": 546.0,
                                     "msg": "Cache file does not exists (yet).",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 103.578244,
+                                    "relativeCreated": 76.345559,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "['str', 'unicode', 'integer', 'float', 'list', 'dict', 'none']"
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,646",
-                                    "created": 1755176312.6464753,
+                                    "asctime": "2025-08-15 19:13:27,546",
+                                    "created": 1755278007.5461164,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_load_source",
@@ -790,24 +790,24 @@
                                     "lineno": 246,
                                     "message": "Loading all data from source - ['str', 'unicode', 'integer', 'float', 'list', 'dict', 'none']",
                                     "module": "__init__",
-                                    "msecs": 646.0,
+                                    "msecs": 546.0,
                                     "msg": "Loading all data from source - %s",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 103.663292,
+                                    "relativeCreated": 76.416969,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_load_on_init.pkl"
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,647",
-                                    "created": 1755176312.6470778,
+                                    "asctime": "2025-08-15 19:13:27,546",
+                                    "created": 1755278007.5466838,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_save_only",
@@ -816,39 +816,39 @@
                                     "lineno": 256,
                                     "message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_load_on_init.pkl)",
                                     "module": "__init__",
-                                    "msecs": 647.0,
+                                    "msecs": 546.0,
                                     "msg": "cache-file stored (%s)",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 104.266075,
+                                    "relativeCreated": 76.984563,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 647.0,
+                            "msecs": 546.0,
                             "msg": "Prepare: First usage of %s with a class holding the data to be cached",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_cached_data.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 104.366349,
+                            "relativeCreated": 77.07482,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.00010037422180175781
+                            "time_consumption": 9.059906005859375e-05
                         },
                         {
                             "args": [
                                 "'string'",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:32,647",
-                            "created": 1755176312.647626,
+                            "asctime": "2025-08-15 19:13:27,547",
+                            "created": 1755278007.547153,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -862,8 +862,8 @@
                                     "args": [
                                         "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_load_on_init.pkl"
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,647",
-                                    "created": 1755176312.6473675,
+                                    "asctime": "2025-08-15 19:13:27,546",
+                                    "created": 1755278007.5469277,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_load_only",
@@ -872,24 +872,24 @@
                                     "lineno": 226,
                                     "message": "Loading properties from cache (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_load_on_init.pkl)",
                                     "module": "__init__",
-                                    "msecs": 647.0,
+                                    "msecs": 546.0,
                                     "msg": "Loading properties from cache (%s)",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 104.555456,
+                                    "relativeCreated": 77.228144,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "str"
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,647",
-                                    "created": 1755176312.6474466,
+                                    "asctime": "2025-08-15 19:13:27,546",
+                                    "created": 1755278007.5469983,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -898,16 +898,16 @@
                                     "lineno": 157,
                                     "message": "Providing property for 'str' from cache",
                                     "module": "__init__",
-                                    "msecs": 647.0,
+                                    "msecs": 546.0,
                                     "msg": "Providing property for '%s' from cache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 104.634707,
+                                    "relativeCreated": 77.298755,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -916,8 +916,8 @@
                                         "'string'",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,647",
-                                    "created": 1755176312.6475112,
+                                    "asctime": "2025-08-15 19:13:27,547",
+                                    "created": 1755278007.5470572,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -926,16 +926,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=str): 'string' ()",
                                     "module": "test",
-                                    "msecs": 647.0,
+                                    "msecs": 547.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 104.699339,
+                                    "relativeCreated": 77.357821,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -945,8 +945,8 @@
                                         "'string'",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,647",
-                                    "created": 1755176312.6475692,
+                                    "asctime": "2025-08-15 19:13:27,547",
+                                    "created": 1755278007.5471077,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -955,39 +955,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=str): result = 'string' ()",
                                     "module": "test",
-                                    "msecs": 647.0,
+                                    "msecs": 547.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 104.75729,
+                                    "relativeCreated": 77.408131,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 647.0,
+                            "msecs": 547.0,
                             "msg": "Data from cached instance with key=str is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 104.814078,
+                            "relativeCreated": 77.453557,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 5.6743621826171875e-05
+                            "time_consumption": 4.5299530029296875e-05
                         },
                         {
                             "args": [
                                 "'unicode'",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:32,647",
-                            "created": 1755176312.6478786,
+                            "asctime": "2025-08-15 19:13:27,547",
+                            "created": 1755278007.547367,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -1001,8 +1001,8 @@
                                     "args": [
                                         "unicode"
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,647",
-                                    "created": 1755176312.647716,
+                                    "asctime": "2025-08-15 19:13:27,547",
+                                    "created": 1755278007.5472295,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -1011,16 +1011,16 @@
                                     "lineno": 157,
                                     "message": "Providing property for 'unicode' from cache",
                                     "module": "__init__",
-                                    "msecs": 647.0,
+                                    "msecs": 547.0,
                                     "msg": "Providing property for '%s' from cache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 104.904138,
+                                    "relativeCreated": 77.529942,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -1029,8 +1029,8 @@
                                         "'unicode'",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,647",
-                                    "created": 1755176312.6477778,
+                                    "asctime": "2025-08-15 19:13:27,547",
+                                    "created": 1755278007.547282,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -1039,16 +1039,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=unicode): 'unicode' ()",
                                     "module": "test",
-                                    "msecs": 647.0,
+                                    "msecs": 547.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 104.965901,
+                                    "relativeCreated": 77.582446,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -1058,8 +1058,8 @@
                                         "'unicode'",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,647",
-                                    "created": 1755176312.6478293,
+                                    "asctime": "2025-08-15 19:13:27,547",
+                                    "created": 1755278007.5473251,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -1068,39 +1068,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=unicode): result = 'unicode' ()",
                                     "module": "test",
-                                    "msecs": 647.0,
+                                    "msecs": 547.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 105.017452,
+                                    "relativeCreated": 77.625782,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 647.0,
+                            "msecs": 547.0,
                             "msg": "Data from cached instance with key=unicode is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 105.066661,
+                            "relativeCreated": 77.667684,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 4.935264587402344e-05
+                            "time_consumption": 4.1961669921875e-05
                         },
                         {
                             "args": [
                                 "17",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:32,648",
-                            "created": 1755176312.648133,
+                            "asctime": "2025-08-15 19:13:27,547",
+                            "created": 1755278007.547581,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -1114,8 +1114,8 @@
                                     "args": [
                                         "integer"
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,647",
-                                    "created": 1755176312.6479664,
+                                    "asctime": "2025-08-15 19:13:27,547",
+                                    "created": 1755278007.547442,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -1124,16 +1124,16 @@
                                     "lineno": 157,
                                     "message": "Providing property for 'integer' from cache",
                                     "module": "__init__",
-                                    "msecs": 647.0,
+                                    "msecs": 547.0,
                                     "msg": "Providing property for '%s' from cache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 105.154681,
+                                    "relativeCreated": 77.742431,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -1142,8 +1142,8 @@
                                         "17",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,648",
-                                    "created": 1755176312.6480284,
+                                    "asctime": "2025-08-15 19:13:27,547",
+                                    "created": 1755278007.5474942,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -1152,16 +1152,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=integer): 17 ()",
                                     "module": "test",
-                                    "msecs": 648.0,
+                                    "msecs": 547.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 105.216438,
+                                    "relativeCreated": 77.794845,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -1171,8 +1171,8 @@
                                         "17",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,648",
-                                    "created": 1755176312.6480794,
+                                    "asctime": "2025-08-15 19:13:27,547",
+                                    "created": 1755278007.5475364,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -1181,39 +1181,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=integer): result = 17 ()",
                                     "module": "test",
-                                    "msecs": 648.0,
+                                    "msecs": 547.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 105.267356,
+                                    "relativeCreated": 77.837099,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 648.0,
+                            "msecs": 547.0,
                             "msg": "Data from cached instance with key=integer is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 105.321273,
+                            "relativeCreated": 77.881503,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 5.364418029785156e-05
+                            "time_consumption": 4.458427429199219e-05
                         },
                         {
                             "args": [
                                 "3.14159",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:32,648",
-                            "created": 1755176312.6483915,
+                            "asctime": "2025-08-15 19:13:27,547",
+                            "created": 1755278007.547794,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -1227,8 +1227,8 @@
                                     "args": [
                                         "float"
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,648",
-                                    "created": 1755176312.648219,
+                                    "asctime": "2025-08-15 19:13:27,547",
+                                    "created": 1755278007.5476556,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -1237,16 +1237,16 @@
                                     "lineno": 157,
                                     "message": "Providing property for 'float' from cache",
                                     "module": "__init__",
-                                    "msecs": 648.0,
+                                    "msecs": 547.0,
                                     "msg": "Providing property for '%s' from cache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 105.407331,
+                                    "relativeCreated": 77.95619,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -1255,8 +1255,8 @@
                                         "3.14159",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,648",
-                                    "created": 1755176312.648284,
+                                    "asctime": "2025-08-15 19:13:27,547",
+                                    "created": 1755278007.54771,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -1265,16 +1265,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=float): 3.14159 ()",
                                     "module": "test",
-                                    "msecs": 648.0,
+                                    "msecs": 547.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 105.471943,
+                                    "relativeCreated": 78.010508,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -1284,8 +1284,8 @@
                                         "3.14159",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,648",
-                                    "created": 1755176312.648336,
+                                    "asctime": "2025-08-15 19:13:27,547",
+                                    "created": 1755278007.5477529,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -1294,39 +1294,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=float): result = 3.14159 ()",
                                     "module": "test",
-                                    "msecs": 648.0,
+                                    "msecs": 547.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 105.524036,
+                                    "relativeCreated": 78.053452,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 648.0,
+                            "msecs": 547.0,
                             "msg": "Data from cached instance with key=float is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 105.579517,
+                            "relativeCreated": 78.094728,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 5.555152893066406e-05
+                            "time_consumption": 4.124641418457031e-05
                         },
                         {
                             "args": [
                                 "[1, 'two', '3', 4]",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:32,648",
-                            "created": 1755176312.648677,
+                            "asctime": "2025-08-15 19:13:27,548",
+                            "created": 1755278007.5480332,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -1340,8 +1340,8 @@
                                     "args": [
                                         "list"
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,648",
-                                    "created": 1755176312.648475,
+                                    "asctime": "2025-08-15 19:13:27,547",
+                                    "created": 1755278007.5478635,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -1350,16 +1350,16 @@
                                     "lineno": 157,
                                     "message": "Providing property for 'list' from cache",
                                     "module": "__init__",
-                                    "msecs": 648.0,
+                                    "msecs": 547.0,
                                     "msg": "Providing property for '%s' from cache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 105.662959,
+                                    "relativeCreated": 78.164031,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -1368,8 +1368,8 @@
                                         "[ 1, 'two', '3', 4 ]",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,648",
-                                    "created": 1755176312.6485438,
+                                    "asctime": "2025-08-15 19:13:27,547",
+                                    "created": 1755278007.5479245,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -1378,16 +1378,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=list): [ 1, 'two', '3', 4 ] ()",
                                     "module": "test",
-                                    "msecs": 648.0,
+                                    "msecs": 547.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 105.731867,
+                                    "relativeCreated": 78.225147,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -1397,8 +1397,8 @@
                                         "[ 1, 'two', '3', 4 ]",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,648",
-                                    "created": 1755176312.648601,
+                                    "asctime": "2025-08-15 19:13:27,547",
+                                    "created": 1755278007.5479732,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -1407,39 +1407,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=list): result = [ 1, 'two', '3', 4 ] ()",
                                     "module": "test",
-                                    "msecs": 648.0,
+                                    "msecs": 547.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 105.789269,
+                                    "relativeCreated": 78.273698,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 648.0,
+                            "msecs": 548.0,
                             "msg": "Data from cached instance with key=list is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 105.865143,
+                            "relativeCreated": 78.333813,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 7.605552673339844e-05
+                            "time_consumption": 6.008148193359375e-05
                         },
                         {
                             "args": [
                                 "{'1': 1, '2': 'two', '3': '3', '4': 4}",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:32,648",
-                            "created": 1755176312.6489651,
+                            "asctime": "2025-08-15 19:13:27,548",
+                            "created": 1755278007.548275,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -1453,8 +1453,8 @@
                                     "args": [
                                         "dict"
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,648",
-                                    "created": 1755176312.6487644,
+                                    "asctime": "2025-08-15 19:13:27,548",
+                                    "created": 1755278007.5481083,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -1463,16 +1463,16 @@
                                     "lineno": 157,
                                     "message": "Providing property for 'dict' from cache",
                                     "module": "__init__",
-                                    "msecs": 648.0,
+                                    "msecs": 548.0,
                                     "msg": "Providing property for '%s' from cache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 105.952492,
+                                    "relativeCreated": 78.408993,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -1481,8 +1481,8 @@
                                         "{ '1': 1, '2': 'two', '3': '3', '4': 4 }",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,648",
-                                    "created": 1755176312.648834,
+                                    "asctime": "2025-08-15 19:13:27,548",
+                                    "created": 1755278007.5481675,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -1491,16 +1491,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=dict): { '1': 1, '2': 'two', '3': '3', '4': 4 } ()",
                                     "module": "test",
-                                    "msecs": 648.0,
+                                    "msecs": 548.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 106.022151,
+                                    "relativeCreated": 78.467957,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -1510,8 +1510,8 @@
                                         "{ '1': 1, '2': 'two', '3': '3', '4': 4 }",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,648",
-                                    "created": 1755176312.648893,
+                                    "asctime": "2025-08-15 19:13:27,548",
+                                    "created": 1755278007.5482168,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -1520,39 +1520,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=dict): result = { '1': 1, '2': 'two', '3': '3', '4': 4 } ()",
                                     "module": "test",
-                                    "msecs": 648.0,
+                                    "msecs": 548.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 106.081368,
+                                    "relativeCreated": 78.517452,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 648.0,
+                            "msecs": 548.0,
                             "msg": "Data from cached instance with key=dict is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 106.153255,
+                            "relativeCreated": 78.575436,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 7.200241088867188e-05
+                            "time_consumption": 5.817413330078125e-05
                         },
                         {
                             "args": [
                                 "None",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:32,649",
-                            "created": 1755176312.6492143,
+                            "asctime": "2025-08-15 19:13:27,548",
+                            "created": 1755278007.5484843,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -1566,8 +1566,8 @@
                                     "args": [
                                         "none"
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,649",
-                                    "created": 1755176312.6490526,
+                                    "asctime": "2025-08-15 19:13:27,548",
+                                    "created": 1755278007.5483491,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -1576,16 +1576,16 @@
                                     "lineno": 157,
                                     "message": "Providing property for 'none' from cache",
                                     "module": "__init__",
-                                    "msecs": 649.0,
+                                    "msecs": 548.0,
                                     "msg": "Providing property for '%s' from cache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 106.24068,
+                                    "relativeCreated": 78.649707,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -1594,8 +1594,8 @@
                                         "None",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,649",
-                                    "created": 1755176312.6491137,
+                                    "asctime": "2025-08-15 19:13:27,548",
+                                    "created": 1755278007.548401,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -1604,16 +1604,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=none): None ()",
                                     "module": "test",
-                                    "msecs": 649.0,
+                                    "msecs": 548.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 106.301723,
+                                    "relativeCreated": 78.701825,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -1623,8 +1623,8 @@
                                         "None",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,649",
-                                    "created": 1755176312.6491652,
+                                    "asctime": "2025-08-15 19:13:27,548",
+                                    "created": 1755278007.548443,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -1633,39 +1633,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=none): result = None ()",
                                     "module": "test",
-                                    "msecs": 649.0,
+                                    "msecs": 548.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 106.353161,
+                                    "relativeCreated": 78.743718,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 649.0,
+                            "msecs": 548.0,
                             "msg": "Data from cached instance with key=none is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 106.402256,
+                            "relativeCreated": 78.784871,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 4.9114227294921875e-05
+                            "time_consumption": 4.124641418457031e-05
                         },
                         {
                             "args": [
                                 "5",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:32,649",
-                            "created": 1755176312.6494567,
+                            "asctime": "2025-08-15 19:13:27,548",
+                            "created": 1755278007.5486882,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -1679,8 +1679,8 @@
                                     "args": [
                                         "unknown_key"
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,649",
-                                    "created": 1755176312.6493008,
+                                    "asctime": "2025-08-15 19:13:27,548",
+                                    "created": 1755278007.5485575,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -1689,16 +1689,16 @@
                                     "lineno": 179,
                                     "message": "Key 'unknown_key' is not in cached_keys. Uncached data will be returned.",
                                     "module": "__init__",
-                                    "msecs": 649.0,
+                                    "msecs": 548.0,
                                     "msg": "Key '%s' is not in cached_keys. Uncached data will be returned.",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 106.488731,
+                                    "relativeCreated": 78.858087,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -1707,8 +1707,8 @@
                                         "5",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,649",
-                                    "created": 1755176312.6493587,
+                                    "asctime": "2025-08-15 19:13:27,548",
+                                    "created": 1755278007.5486066,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -1717,16 +1717,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=unknown_key): 5 ()",
                                     "module": "test",
-                                    "msecs": 649.0,
+                                    "msecs": 548.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 106.546884,
+                                    "relativeCreated": 78.907269,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -1736,8 +1736,8 @@
                                         "5",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,649",
-                                    "created": 1755176312.6494086,
+                                    "asctime": "2025-08-15 19:13:27,548",
+                                    "created": 1755278007.5486479,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -1746,43 +1746,43 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=unknown_key): result = 5 ()",
                                     "module": "test",
-                                    "msecs": 649.0,
+                                    "msecs": 548.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 106.596655,
+                                    "relativeCreated": 78.948656,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 649.0,
+                            "msecs": 548.0,
                             "msg": "Data from cached instance with key=unknown_key is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 106.644826,
+                            "relativeCreated": 78.988626,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 4.8160552978515625e-05
+                            "time_consumption": 4.029273986816406e-05
                         }
                     ],
-                    "thread": 140229749231872,
+                    "thread": 140171799056640,
                     "threadName": "MainThread",
-                    "time_consumption": 0.003454923629760742,
-                    "time_finished": "2025-08-14 14:58:32,649",
-                    "time_start": "2025-08-14 14:58:32,646"
+                    "time_consumption": 0.0029296875,
+                    "time_finished": "2025-08-15 19:13:27,548",
+                    "time_start": "2025-08-15 19:13:27,545"
                 },
                 "REQ-0002": {
                     "args": null,
-                    "asctime": "2025-08-14 14:58:38,672",
-                    "created": 1755176318.6723802,
+                    "asctime": "2025-08-15 19:13:33,566",
+                    "created": 1755278013.566852,
                     "exc_text": null,
                     "filename": "__init__.py",
                     "funcName": "testCase",
@@ -1792,20 +1792,20 @@
                     "message": "REQ-0002",
                     "module": "__init__",
                     "moduleLogger": [],
-                    "msecs": 672.0,
+                    "msecs": 566.0,
                     "msg": "REQ-0002",
                     "name": "__tLogger__",
                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/report/__init__.py",
-                    "process": 743412,
+                    "process": 1015645,
                     "processName": "MainProcess",
-                    "relativeCreated": 6129.568229,
+                    "relativeCreated": 6097.152697,
                     "stack_info": null,
                     "taskName": null,
                     "testcaseLogger": [
                         {
                             "args": [],
-                            "asctime": "2025-08-14 14:58:38,673",
-                            "created": 1755176318.6730142,
+                            "asctime": "2025-08-15 19:13:33,567",
+                            "created": 1755278013.567412,
                             "exc_text": null,
                             "filename": "test_helpers.py",
                             "funcName": "clean",
@@ -1817,8 +1817,8 @@
                             "moduleLogger": [
                                 {
                                     "args": [],
-                                    "asctime": "2025-08-14 14:58:38,672",
-                                    "created": 1755176318.672703,
+                                    "asctime": "2025-08-15 19:13:33,567",
+                                    "created": 1755278013.5671566,
                                     "exc_text": null,
                                     "filename": "test_helpers.py",
                                     "funcName": "clean",
@@ -1827,39 +1827,39 @@
                                     "lineno": 17,
                                     "message": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
                                     "module": "test_helpers",
-                                    "msecs": 672.0,
+                                    "msecs": 567.0,
                                     "msg": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_helpers.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 6129.890944,
+                                    "relativeCreated": 6097.45719,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 673.0,
+                            "msecs": 567.0,
                             "msg": "Prepare: Cleanup before testcase execution",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_helpers.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 6130.202383,
+                            "relativeCreated": 6097.712543,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.00031113624572753906
+                            "time_consumption": 0.00025534629821777344
                         },
                         {
                             "args": [
                                 "'string'",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:38,674",
-                            "created": 1755176318.6747823,
+                            "asctime": "2025-08-15 19:13:33,568",
+                            "created": 1755278013.5687883,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -1871,8 +1871,8 @@
                             "moduleLogger": [
                                 {
                                     "args": [],
-                                    "asctime": "2025-08-14 14:58:38,673",
-                                    "created": 1755176318.6733284,
+                                    "asctime": "2025-08-15 19:13:33,567",
+                                    "created": 1755278013.5677135,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_load_cache",
@@ -1881,24 +1881,24 @@
                                     "lineno": 237,
                                     "message": "Cache file does not exists (yet).",
                                     "module": "__init__",
-                                    "msecs": 673.0,
+                                    "msecs": 567.0,
                                     "msg": "Cache file does not exists (yet).",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 6130.516598,
+                                    "relativeCreated": 6098.014049,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "['str', 'unicode', 'integer', 'float', 'list', 'dict', 'none']"
                                     ],
-                                    "asctime": "2025-08-14 14:58:38,673",
-                                    "created": 1755176318.6735303,
+                                    "asctime": "2025-08-15 19:13:33,567",
+                                    "created": 1755278013.567913,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_load_source",
@@ -1907,24 +1907,24 @@
                                     "lineno": 246,
                                     "message": "Loading all data from source - ['str', 'unicode', 'integer', 'float', 'list', 'dict', 'none']",
                                     "module": "__init__",
-                                    "msecs": 673.0,
+                                    "msecs": 567.0,
                                     "msg": "Loading all data from source - %s",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 6130.718432,
+                                    "relativeCreated": 6098.213654,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "str"
                                     ],
-                                    "asctime": "2025-08-14 14:58:38,674",
-                                    "created": 1755176318.6742902,
+                                    "asctime": "2025-08-15 19:13:33,568",
+                                    "created": 1755278013.5685546,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -1933,16 +1933,16 @@
                                     "lineno": 157,
                                     "message": "Providing property for 'str' from cache",
                                     "module": "__init__",
-                                    "msecs": 674.0,
+                                    "msecs": 568.0,
                                     "msg": "Providing property for '%s' from cache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 6131.478198,
+                                    "relativeCreated": 6098.855312,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -1951,8 +1951,8 @@
                                         "'string'",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:38,674",
-                                    "created": 1755176318.6744962,
+                                    "asctime": "2025-08-15 19:13:33,568",
+                                    "created": 1755278013.5686407,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -1961,16 +1961,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=str): 'string' ()",
                                     "module": "test",
-                                    "msecs": 674.0,
+                                    "msecs": 568.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 6131.684362,
+                                    "relativeCreated": 6098.94131,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -1980,8 +1980,8 @@
                                         "'string'",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:38,674",
-                                    "created": 1755176318.674642,
+                                    "asctime": "2025-08-15 19:13:33,568",
+                                    "created": 1755278013.568719,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -1990,39 +1990,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=str): result = 'string' ()",
                                     "module": "test",
-                                    "msecs": 674.0,
+                                    "msecs": 568.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 6131.830256,
+                                    "relativeCreated": 6099.019505,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 674.0,
+                            "msecs": 568.0,
                             "msg": "Data from cached instance with key=str is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 6131.970368,
+                            "relativeCreated": 6099.088835,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.00014019012451171875
+                            "time_consumption": 6.937980651855469e-05
                         },
                         {
                             "args": [
                                 "'unicode'",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:38,675",
-                            "created": 1755176318.6754527,
+                            "asctime": "2025-08-15 19:13:33,569",
+                            "created": 1755278013.5691092,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -2036,8 +2036,8 @@
                                     "args": [
                                         "unicode"
                                     ],
-                                    "asctime": "2025-08-14 14:58:38,675",
-                                    "created": 1755176318.6750195,
+                                    "asctime": "2025-08-15 19:13:33,568",
+                                    "created": 1755278013.5689015,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -2046,16 +2046,16 @@
                                     "lineno": 157,
                                     "message": "Providing property for 'unicode' from cache",
                                     "module": "__init__",
-                                    "msecs": 675.0,
+                                    "msecs": 568.0,
                                     "msg": "Providing property for '%s' from cache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 6132.207525,
+                                    "relativeCreated": 6099.202147,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -2064,8 +2064,8 @@
                                         "'unicode'",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:38,675",
-                                    "created": 1755176318.6751826,
+                                    "asctime": "2025-08-15 19:13:33,568",
+                                    "created": 1755278013.5689805,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -2074,16 +2074,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=unicode): 'unicode' ()",
                                     "module": "test",
-                                    "msecs": 675.0,
+                                    "msecs": 568.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 6132.370663,
+                                    "relativeCreated": 6099.28112,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -2093,8 +2093,8 @@
                                         "'unicode'",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:38,675",
-                                    "created": 1755176318.675318,
+                                    "asctime": "2025-08-15 19:13:33,569",
+                                    "created": 1755278013.5690455,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -2103,39 +2103,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=unicode): result = 'unicode' ()",
                                     "module": "test",
-                                    "msecs": 675.0,
+                                    "msecs": 569.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 6132.506029,
+                                    "relativeCreated": 6099.346099,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 675.0,
+                            "msecs": 569.0,
                             "msg": "Data from cached instance with key=unicode is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 6132.64069,
+                            "relativeCreated": 6099.409861,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.0001347064971923828
+                            "time_consumption": 6.365776062011719e-05
                         },
                         {
                             "args": [
                                 "17",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:38,676",
-                            "created": 1755176318.6761112,
+                            "asctime": "2025-08-15 19:13:33,569",
+                            "created": 1755278013.5694377,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -2149,8 +2149,8 @@
                                     "args": [
                                         "integer"
                                     ],
-                                    "asctime": "2025-08-14 14:58:38,675",
-                                    "created": 1755176318.6756725,
+                                    "asctime": "2025-08-15 19:13:33,569",
+                                    "created": 1755278013.5692358,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -2159,16 +2159,16 @@
                                     "lineno": 157,
                                     "message": "Providing property for 'integer' from cache",
                                     "module": "__init__",
-                                    "msecs": 675.0,
+                                    "msecs": 569.0,
                                     "msg": "Providing property for '%s' from cache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 6132.86061,
+                                    "relativeCreated": 6099.536343,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -2177,8 +2177,8 @@
                                         "17",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:38,675",
-                                    "created": 1755176318.6758318,
+                                    "asctime": "2025-08-15 19:13:33,569",
+                                    "created": 1755278013.5693097,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -2187,16 +2187,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=integer): 17 ()",
                                     "module": "test",
-                                    "msecs": 675.0,
+                                    "msecs": 569.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 6133.019776,
+                                    "relativeCreated": 6099.610265,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -2206,8 +2206,8 @@
                                         "17",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:38,675",
-                                    "created": 1755176318.6759782,
+                                    "asctime": "2025-08-15 19:13:33,569",
+                                    "created": 1755278013.569376,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -2216,39 +2216,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=integer): result = 17 ()",
                                     "module": "test",
-                                    "msecs": 675.0,
+                                    "msecs": 569.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 6133.166378,
+                                    "relativeCreated": 6099.676504,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 676.0,
+                            "msecs": 569.0,
                             "msg": "Data from cached instance with key=integer is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 6133.299288,
+                            "relativeCreated": 6099.738196,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.00013303756713867188
+                            "time_consumption": 6.175041198730469e-05
                         },
                         {
                             "args": [
                                 "3.14159",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:38,676",
-                            "created": 1755176318.6767933,
+                            "asctime": "2025-08-15 19:13:33,569",
+                            "created": 1755278013.5697458,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -2262,8 +2262,8 @@
                                     "args": [
                                         "float"
                                     ],
-                                    "asctime": "2025-08-14 14:58:38,676",
-                                    "created": 1755176318.676339,
+                                    "asctime": "2025-08-15 19:13:33,569",
+                                    "created": 1755278013.569538,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -2272,16 +2272,16 @@
                                     "lineno": 157,
                                     "message": "Providing property for 'float' from cache",
                                     "module": "__init__",
-                                    "msecs": 676.0,
+                                    "msecs": 569.0,
                                     "msg": "Providing property for '%s' from cache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 6133.527114,
+                                    "relativeCreated": 6099.838605,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -2290,8 +2290,8 @@
                                         "3.14159",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:38,676",
-                                    "created": 1755176318.6765196,
+                                    "asctime": "2025-08-15 19:13:33,569",
+                                    "created": 1755278013.5696213,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -2300,16 +2300,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=float): 3.14159 ()",
                                     "module": "test",
-                                    "msecs": 676.0,
+                                    "msecs": 569.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 6133.707713,
+                                    "relativeCreated": 6099.921807,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -2319,8 +2319,8 @@
                                         "3.14159",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:38,676",
-                                    "created": 1755176318.6766593,
+                                    "asctime": "2025-08-15 19:13:33,569",
+                                    "created": 1755278013.5696845,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -2329,39 +2329,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=float): result = 3.14159 ()",
                                     "module": "test",
-                                    "msecs": 676.0,
+                                    "msecs": 569.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 6133.847457,
+                                    "relativeCreated": 6099.985081,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 676.0,
+                            "msecs": 569.0,
                             "msg": "Data from cached instance with key=float is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 6133.981339,
+                            "relativeCreated": 6100.046251,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.00013399124145507812
+                            "time_consumption": 6.127357482910156e-05
                         },
                         {
                             "args": [
                                 "[1, 'two', '3', 4]",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:38,677",
-                            "created": 1755176318.6775322,
+                            "asctime": "2025-08-15 19:13:33,570",
+                            "created": 1755278013.570081,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -2375,8 +2375,8 @@
                                     "args": [
                                         "list"
                                     ],
-                                    "asctime": "2025-08-14 14:58:38,677",
-                                    "created": 1755176318.677014,
+                                    "asctime": "2025-08-15 19:13:33,569",
+                                    "created": 1755278013.569846,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -2385,16 +2385,16 @@
                                     "lineno": 157,
                                     "message": "Providing property for 'list' from cache",
                                     "module": "__init__",
-                                    "msecs": 677.0,
+                                    "msecs": 569.0,
                                     "msg": "Providing property for '%s' from cache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 6134.202053,
+                                    "relativeCreated": 6100.146546,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -2403,8 +2403,8 @@
                                         "[ 1, 'two', '3', 4 ]",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:38,677",
-                                    "created": 1755176318.6771905,
+                                    "asctime": "2025-08-15 19:13:33,569",
+                                    "created": 1755278013.5699303,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -2413,16 +2413,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=list): [ 1, 'two', '3', 4 ] ()",
                                     "module": "test",
-                                    "msecs": 677.0,
+                                    "msecs": 569.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 6134.378773,
+                                    "relativeCreated": 6100.230868,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -2432,8 +2432,8 @@
                                         "[ 1, 'two', '3', 4 ]",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:38,677",
-                                    "created": 1755176318.677341,
+                                    "asctime": "2025-08-15 19:13:33,569",
+                                    "created": 1755278013.5699997,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -2442,39 +2442,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=list): result = [ 1, 'two', '3', 4 ] ()",
                                     "module": "test",
-                                    "msecs": 677.0,
+                                    "msecs": 569.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 6134.52893,
+                                    "relativeCreated": 6100.300342,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 677.0,
+                            "msecs": 570.0,
                             "msg": "Data from cached instance with key=list is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 6134.720327,
+                            "relativeCreated": 6100.381726,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.00019121170043945312
+                            "time_consumption": 8.130073547363281e-05
                         },
                         {
                             "args": [
                                 "{'1': 1, '2': 'two', '3': '3', '4': 4}",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:38,678",
-                            "created": 1755176318.6783807,
+                            "asctime": "2025-08-15 19:13:33,570",
+                            "created": 1755278013.5704281,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -2488,8 +2488,8 @@
                                     "args": [
                                         "dict"
                                     ],
-                                    "asctime": "2025-08-14 14:58:38,677",
-                                    "created": 1755176318.6777627,
+                                    "asctime": "2025-08-15 19:13:33,570",
+                                    "created": 1755278013.5701902,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -2498,16 +2498,16 @@
                                     "lineno": 157,
                                     "message": "Providing property for 'dict' from cache",
                                     "module": "__init__",
-                                    "msecs": 677.0,
+                                    "msecs": 570.0,
                                     "msg": "Providing property for '%s' from cache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 6134.950964,
+                                    "relativeCreated": 6100.490582,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -2516,8 +2516,8 @@
                                         "{ '1': 1, '2': 'two', '3': '3', '4': 4 }",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:38,677",
-                                    "created": 1755176318.67796,
+                                    "asctime": "2025-08-15 19:13:33,570",
+                                    "created": 1755278013.5702753,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -2526,16 +2526,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=dict): { '1': 1, '2': 'two', '3': '3', '4': 4 } ()",
                                     "module": "test",
-                                    "msecs": 677.0,
+                                    "msecs": 570.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 6135.147984,
+                                    "relativeCreated": 6100.576046,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -2545,8 +2545,8 @@
                                         "{ '1': 1, '2': 'two', '3': '3', '4': 4 }",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:38,678",
-                                    "created": 1755176318.6781554,
+                                    "asctime": "2025-08-15 19:13:33,570",
+                                    "created": 1755278013.5703456,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -2555,39 +2555,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=dict): result = { '1': 1, '2': 'two', '3': '3', '4': 4 } ()",
                                     "module": "test",
-                                    "msecs": 678.0,
+                                    "msecs": 570.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 6135.343677,
+                                    "relativeCreated": 6100.646339,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 678.0,
+                            "msecs": 570.0,
                             "msg": "Data from cached instance with key=dict is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 6135.569015,
+                            "relativeCreated": 6100.728864,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.00022530555725097656
+                            "time_consumption": 8.249282836914062e-05
                         },
                         {
                             "args": [
                                 "None",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:38,679",
-                            "created": 1755176318.6792486,
+                            "asctime": "2025-08-15 19:13:33,570",
+                            "created": 1755278013.5707536,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -2601,8 +2601,8 @@
                                     "args": [
                                         "none"
                                     ],
-                                    "asctime": "2025-08-14 14:58:38,678",
-                                    "created": 1755176318.678625,
+                                    "asctime": "2025-08-15 19:13:33,570",
+                                    "created": 1755278013.5705304,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -2611,16 +2611,16 @@
                                     "lineno": 157,
                                     "message": "Providing property for 'none' from cache",
                                     "module": "__init__",
-                                    "msecs": 678.0,
+                                    "msecs": 570.0,
                                     "msg": "Providing property for '%s' from cache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 6135.813148,
+                                    "relativeCreated": 6100.830903,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -2629,8 +2629,8 @@
                                         "None",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:38,678",
-                                    "created": 1755176318.67879,
+                                    "asctime": "2025-08-15 19:13:33,570",
+                                    "created": 1755278013.57062,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -2639,16 +2639,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=none): None ()",
                                     "module": "test",
-                                    "msecs": 678.0,
+                                    "msecs": 570.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 6135.97833,
+                                    "relativeCreated": 6100.920794,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -2658,8 +2658,8 @@
                                         "None",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:38,679",
-                                    "created": 1755176318.6790044,
+                                    "asctime": "2025-08-15 19:13:33,570",
+                                    "created": 1755278013.570691,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -2668,39 +2668,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=none): result = None ()",
                                     "module": "test",
-                                    "msecs": 679.0,
+                                    "msecs": 570.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 6136.19256,
+                                    "relativeCreated": 6100.991716,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 679.0,
+                            "msecs": 570.0,
                             "msg": "Data from cached instance with key=none is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 6136.436699,
+                            "relativeCreated": 6101.054083,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.000244140625
+                            "time_consumption": 6.246566772460938e-05
                         },
                         {
                             "args": [
                                 "False",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:38,680",
-                            "created": 1755176318.6801958,
+                            "asctime": "2025-08-15 19:13:33,570",
+                            "created": 1755278013.5709977,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -2716,8 +2716,8 @@
                                         "False",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:38,679",
-                                    "created": 1755176318.6796892,
+                                    "asctime": "2025-08-15 19:13:33,570",
+                                    "created": 1755278013.5708675,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -2726,16 +2726,16 @@
                                     "lineno": 22,
                                     "message": "Result (The cache file (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_full_update_sleep.json) shall not exist): False ()",
                                     "module": "test",
-                                    "msecs": 679.0,
+                                    "msecs": 570.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 6136.87736,
+                                    "relativeCreated": 6101.168064,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -2745,8 +2745,8 @@
                                         "False",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:38,679",
-                                    "created": 1755176318.679943,
+                                    "asctime": "2025-08-15 19:13:33,570",
+                                    "created": 1755278013.570932,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -2755,43 +2755,43 @@
                                     "lineno": 26,
                                     "message": "Expectation (The cache file (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_full_update_sleep.json) shall not exist): result = False ()",
                                     "module": "test",
-                                    "msecs": 679.0,
+                                    "msecs": 570.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 6137.131385,
+                                    "relativeCreated": 6101.232691,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 680.0,
+                            "msecs": 570.0,
                             "msg": "The cache file (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_full_update_sleep.json) shall not exist is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 6137.384008,
+                            "relativeCreated": 6101.29844,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.00025272369384765625
+                            "time_consumption": 6.580352783203125e-05
                         }
                     ],
-                    "thread": 140229749231872,
+                    "thread": 140171799056640,
                     "threadName": "MainThread",
-                    "time_consumption": 0.00781559944152832,
-                    "time_finished": "2025-08-14 14:58:38,680",
-                    "time_start": "2025-08-14 14:58:38,672"
+                    "time_consumption": 0.004145622253417969,
+                    "time_finished": "2025-08-15 19:13:33,570",
+                    "time_start": "2025-08-15 19:13:33,566"
                 },
                 "REQ-0003": {
                     "args": null,
-                    "asctime": "2025-08-14 14:58:32,642",
-                    "created": 1755176312.6425395,
+                    "asctime": "2025-08-15 19:13:27,542",
+                    "created": 1755278007.5428247,
                     "exc_text": null,
                     "filename": "__init__.py",
                     "funcName": "testCase",
@@ -2801,20 +2801,20 @@
                     "message": "REQ-0003",
                     "module": "__init__",
                     "moduleLogger": [],
-                    "msecs": 642.0,
+                    "msecs": 542.0,
                     "msg": "REQ-0003",
                     "name": "__tLogger__",
                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/report/__init__.py",
-                    "process": 743412,
+                    "process": 1015645,
                     "processName": "MainProcess",
-                    "relativeCreated": 99.727564,
+                    "relativeCreated": 73.125365,
                     "stack_info": null,
                     "taskName": null,
                     "testcaseLogger": [
                         {
                             "args": [],
-                            "asctime": "2025-08-14 14:58:32,643",
-                            "created": 1755176312.6430807,
+                            "asctime": "2025-08-15 19:13:27,543",
+                            "created": 1755278007.543294,
                             "exc_text": null,
                             "filename": "test_helpers.py",
                             "funcName": "clean",
@@ -2826,8 +2826,8 @@
                             "moduleLogger": [
                                 {
                                     "args": [],
-                                    "asctime": "2025-08-14 14:58:32,642",
-                                    "created": 1755176312.6429133,
+                                    "asctime": "2025-08-15 19:13:27,543",
+                                    "created": 1755278007.5431452,
                                     "exc_text": null,
                                     "filename": "test_helpers.py",
                                     "funcName": "clean",
@@ -2836,38 +2836,38 @@
                                     "lineno": 17,
                                     "message": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
                                     "module": "test_helpers",
-                                    "msecs": 642.0,
+                                    "msecs": 543.0,
                                     "msg": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_helpers.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 100.101268,
+                                    "relativeCreated": 73.445789,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 643.0,
+                            "msecs": 543.0,
                             "msg": "Prepare: Cleanup before testcase execution",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_helpers.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 100.268863,
+                            "relativeCreated": 73.594528,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.00016736984252929688
+                            "time_consumption": 0.000148773193359375
                         },
                         {
                             "args": [
                                 "'property_cache_json'"
                             ],
-                            "asctime": "2025-08-14 14:58:32,643",
-                            "created": 1755176312.6432078,
+                            "asctime": "2025-08-15 19:13:27,543",
+                            "created": 1755278007.5434012,
                             "exc_text": null,
                             "filename": "test_cached_data.py",
                             "funcName": "cached_data",
@@ -2877,16 +2877,16 @@
                             "message": "Prepare: First usage of 'property_cache_json' with a class holding the data to be cached",
                             "module": "test_cached_data",
                             "moduleLogger": [],
-                            "msecs": 643.0,
+                            "msecs": 543.0,
                             "msg": "Prepare: First usage of %s with a class holding the data to be cached",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_cached_data.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 100.395816,
+                            "relativeCreated": 73.701715,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
                             "time_consumption": 0.0
                         },
@@ -2895,8 +2895,8 @@
                                 "'__string__'",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:32,643",
-                            "created": 1755176312.643832,
+                            "asctime": "2025-08-15 19:13:27,543",
+                            "created": 1755278007.5439281,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -2908,8 +2908,8 @@
                             "moduleLogger": [
                                 {
                                     "args": [],
-                                    "asctime": "2025-08-14 14:58:32,643",
-                                    "created": 1755176312.6434593,
+                                    "asctime": "2025-08-15 19:13:27,543",
+                                    "created": 1755278007.5436103,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_load_cache",
@@ -2918,24 +2918,24 @@
                                     "lineno": 237,
                                     "message": "Cache file does not exists (yet).",
                                     "module": "__init__",
-                                    "msecs": 643.0,
+                                    "msecs": 543.0,
                                     "msg": "Cache file does not exists (yet).",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 100.647301,
+                                    "relativeCreated": 73.911001,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "str"
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,643",
-                                    "created": 1755176312.643569,
+                                    "asctime": "2025-08-15 19:13:27,543",
+                                    "created": 1755278007.543706,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -2944,16 +2944,16 @@
                                     "lineno": 163,
                                     "message": "Loading property for key='str' from source instance",
                                     "module": "__init__",
-                                    "msecs": 643.0,
+                                    "msecs": 543.0,
                                     "msg": "Loading property for key='%s' from source instance",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 100.756864,
+                                    "relativeCreated": 74.006337,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -2962,8 +2962,8 @@
                                         "'__string__'",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,643",
-                                    "created": 1755176312.6436756,
+                                    "asctime": "2025-08-15 19:13:27,543",
+                                    "created": 1755278007.5437975,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -2972,16 +2972,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=str): '__string__' ()",
                                     "module": "test",
-                                    "msecs": 643.0,
+                                    "msecs": 543.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 100.863694,
+                                    "relativeCreated": 74.09802,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -2991,8 +2991,8 @@
                                         "'__string__'",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,643",
-                                    "created": 1755176312.6437435,
+                                    "asctime": "2025-08-15 19:13:27,543",
+                                    "created": 1755278007.5438538,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -3001,39 +3001,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=str): result = '__string__' ()",
                                     "module": "test",
-                                    "msecs": 643.0,
+                                    "msecs": 543.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 100.931557,
+                                    "relativeCreated": 74.154393,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 643.0,
+                            "msecs": 543.0,
                             "msg": "Data from cached instance with key=str is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 101.02023,
+                            "relativeCreated": 74.228577,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 8.845329284667969e-05
+                            "time_consumption": 7.43865966796875e-05
                         },
                         {
                             "args": [
                                 "'__unicode__'",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:32,644",
-                            "created": 1755176312.6441035,
+                            "asctime": "2025-08-15 19:13:27,544",
+                            "created": 1755278007.5441587,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -3047,8 +3047,8 @@
                                     "args": [
                                         "unicode"
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,643",
-                                    "created": 1755176312.643931,
+                                    "asctime": "2025-08-15 19:13:27,544",
+                                    "created": 1755278007.544011,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -3057,16 +3057,16 @@
                                     "lineno": 163,
                                     "message": "Loading property for key='unicode' from source instance",
                                     "module": "__init__",
-                                    "msecs": 643.0,
+                                    "msecs": 544.0,
                                     "msg": "Loading property for key='%s' from source instance",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 101.118907,
+                                    "relativeCreated": 74.311524,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -3075,8 +3075,8 @@
                                         "'__unicode__'",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,643",
-                                    "created": 1755176312.6439965,
+                                    "asctime": "2025-08-15 19:13:27,544",
+                                    "created": 1755278007.5440667,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -3085,16 +3085,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=unicode): '__unicode__' ()",
                                     "module": "test",
-                                    "msecs": 643.0,
+                                    "msecs": 544.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 101.184416,
+                                    "relativeCreated": 74.367161,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -3104,8 +3104,8 @@
                                         "'__unicode__'",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,644",
-                                    "created": 1755176312.6440492,
+                                    "asctime": "2025-08-15 19:13:27,544",
+                                    "created": 1755278007.5441127,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -3114,39 +3114,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=unicode): result = '__unicode__' ()",
                                     "module": "test",
-                                    "msecs": 644.0,
+                                    "msecs": 544.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 101.237289,
+                                    "relativeCreated": 74.413158,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 644.0,
+                            "msecs": 544.0,
                             "msg": "Data from cached instance with key=unicode is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 101.291483,
+                            "relativeCreated": 74.459372,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 5.435943603515625e-05
+                            "time_consumption": 4.601478576660156e-05
                         },
                         {
                             "args": [
                                 "34",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:32,644",
-                            "created": 1755176312.6443906,
+                            "asctime": "2025-08-15 19:13:27,544",
+                            "created": 1755278007.5443697,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -3160,8 +3160,8 @@
                                     "args": [
                                         "integer"
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,644",
-                                    "created": 1755176312.6441905,
+                                    "asctime": "2025-08-15 19:13:27,544",
+                                    "created": 1755278007.5442328,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -3170,16 +3170,16 @@
                                     "lineno": 163,
                                     "message": "Loading property for key='integer' from source instance",
                                     "module": "__init__",
-                                    "msecs": 644.0,
+                                    "msecs": 544.0,
                                     "msg": "Loading property for key='%s' from source instance",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 101.37863,
+                                    "relativeCreated": 74.533475,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -3188,8 +3188,8 @@
                                         "34",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,644",
-                                    "created": 1755176312.644259,
+                                    "asctime": "2025-08-15 19:13:27,544",
+                                    "created": 1755278007.5442846,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -3198,16 +3198,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=integer): 34 ()",
                                     "module": "test",
-                                    "msecs": 644.0,
+                                    "msecs": 544.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 101.447143,
+                                    "relativeCreated": 74.585302,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -3217,8 +3217,8 @@
                                         "34",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,644",
-                                    "created": 1755176312.6443365,
+                                    "asctime": "2025-08-15 19:13:27,544",
+                                    "created": 1755278007.5443275,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -3227,39 +3227,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=integer): result = 34 ()",
                                     "module": "test",
-                                    "msecs": 644.0,
+                                    "msecs": 544.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 101.52442,
+                                    "relativeCreated": 74.628112,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 644.0,
+                            "msecs": 544.0,
                             "msg": "Data from cached instance with key=integer is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 101.57866,
+                            "relativeCreated": 74.670381,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 5.412101745605469e-05
+                            "time_consumption": 4.220008850097656e-05
                         },
                         {
                             "args": [
                                 "2.71828",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:32,644",
-                            "created": 1755176312.6446435,
+                            "asctime": "2025-08-15 19:13:27,544",
+                            "created": 1755278007.5445879,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -3273,8 +3273,8 @@
                                     "args": [
                                         "float"
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,644",
-                                    "created": 1755176312.6444771,
+                                    "asctime": "2025-08-15 19:13:27,544",
+                                    "created": 1755278007.5444453,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -3283,16 +3283,16 @@
                                     "lineno": 163,
                                     "message": "Loading property for key='float' from source instance",
                                     "module": "__init__",
-                                    "msecs": 644.0,
+                                    "msecs": 544.0,
                                     "msg": "Loading property for key='%s' from source instance",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 101.665215,
+                                    "relativeCreated": 74.745858,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -3301,8 +3301,8 @@
                                         "2.71828",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,644",
-                                    "created": 1755176312.6445408,
+                                    "asctime": "2025-08-15 19:13:27,544",
+                                    "created": 1755278007.5444994,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -3311,16 +3311,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=float): 2.71828 ()",
                                     "module": "test",
-                                    "msecs": 644.0,
+                                    "msecs": 544.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 101.728724,
+                                    "relativeCreated": 74.800028,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -3330,8 +3330,8 @@
                                         "2.71828",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,644",
-                                    "created": 1755176312.644593,
+                                    "asctime": "2025-08-15 19:13:27,544",
+                                    "created": 1755278007.5445445,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -3340,39 +3340,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=float): result = 2.71828 ()",
                                     "module": "test",
-                                    "msecs": 644.0,
+                                    "msecs": 544.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 101.781104,
+                                    "relativeCreated": 74.84501,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 644.0,
+                            "msecs": 544.0,
                             "msg": "Data from cached instance with key=float is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 101.831696,
+                            "relativeCreated": 74.888363,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 5.054473876953125e-05
+                            "time_consumption": 4.3392181396484375e-05
                         },
                         {
                             "args": [
                                 "['one', 2, 3, '4']",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:32,644",
-                            "created": 1755176312.6449707,
+                            "asctime": "2025-08-15 19:13:27,544",
+                            "created": 1755278007.5448623,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -3386,8 +3386,8 @@
                                     "args": [
                                         "list"
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,644",
-                                    "created": 1755176312.6447272,
+                                    "asctime": "2025-08-15 19:13:27,544",
+                                    "created": 1755278007.544659,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -3396,16 +3396,16 @@
                                     "lineno": 163,
                                     "message": "Loading property for key='list' from source instance",
                                     "module": "__init__",
-                                    "msecs": 644.0,
+                                    "msecs": 544.0,
                                     "msg": "Loading property for key='%s' from source instance",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 101.915389,
+                                    "relativeCreated": 74.959499,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -3414,8 +3414,8 @@
                                         "[ 'one', 2, 3, '4' ]",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,644",
-                                    "created": 1755176312.6448038,
+                                    "asctime": "2025-08-15 19:13:27,544",
+                                    "created": 1755278007.5447218,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -3424,16 +3424,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=list): [ 'one', 2, 3, '4' ] ()",
                                     "module": "test",
-                                    "msecs": 644.0,
+                                    "msecs": 544.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 101.992013,
+                                    "relativeCreated": 75.022558,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -3443,8 +3443,8 @@
                                         "[ 'one', 2, 3, '4' ]",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,644",
-                                    "created": 1755176312.6448686,
+                                    "asctime": "2025-08-15 19:13:27,544",
+                                    "created": 1755278007.5447757,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -3453,39 +3453,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=list): result = [ 'one', 2, 3, '4' ] ()",
                                     "module": "test",
-                                    "msecs": 644.0,
+                                    "msecs": 544.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 102.056576,
+                                    "relativeCreated": 75.076367,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 644.0,
+                            "msecs": 544.0,
                             "msg": "Data from cached instance with key=list is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 102.158762,
+                            "relativeCreated": 75.162933,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.00010204315185546875
+                            "time_consumption": 8.654594421386719e-05
                         },
                         {
                             "args": [
                                 "{'1': '1', '2': 2, '3': 'three', '4': '4'}",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:32,645",
-                            "created": 1755176312.6452956,
+                            "asctime": "2025-08-15 19:13:27,545",
+                            "created": 1755278007.5451367,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -3499,8 +3499,8 @@
                                     "args": [
                                         "dict"
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,645",
-                                    "created": 1755176312.6450791,
+                                    "asctime": "2025-08-15 19:13:27,544",
+                                    "created": 1755278007.544943,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -3509,16 +3509,16 @@
                                     "lineno": 163,
                                     "message": "Loading property for key='dict' from source instance",
                                     "module": "__init__",
-                                    "msecs": 645.0,
+                                    "msecs": 544.0,
                                     "msg": "Loading property for key='%s' from source instance",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 102.267186,
+                                    "relativeCreated": 75.243772,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -3527,8 +3527,8 @@
                                         "{ '1': '1', '2': 2, '3': 'three', '4': '4' }",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,645",
-                                    "created": 1755176312.6451492,
+                                    "asctime": "2025-08-15 19:13:27,545",
+                                    "created": 1755278007.5450048,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -3537,16 +3537,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=dict): { '1': '1', '2': 2, '3': 'three', '4': '4' } ()",
                                     "module": "test",
-                                    "msecs": 645.0,
+                                    "msecs": 545.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 102.337404,
+                                    "relativeCreated": 75.305339,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -3556,8 +3556,8 @@
                                         "{ '1': '1', '2': 2, '3': 'three', '4': '4' }",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,645",
-                                    "created": 1755176312.6452081,
+                                    "asctime": "2025-08-15 19:13:27,545",
+                                    "created": 1755278007.5450575,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -3566,39 +3566,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=dict): result = { '1': '1', '2': 2, '3': 'three', '4': '4' } ()",
                                     "module": "test",
-                                    "msecs": 645.0,
+                                    "msecs": 545.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 102.396199,
+                                    "relativeCreated": 75.358233,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 645.0,
+                            "msecs": 545.0,
                             "msg": "Data from cached instance with key=dict is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 102.483669,
+                            "relativeCreated": 75.437239,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 8.749961853027344e-05
+                            "time_consumption": 7.915496826171875e-05
                         },
                         {
                             "args": [
                                 "'not None'",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:32,645",
-                            "created": 1755176312.6455429,
+                            "asctime": "2025-08-15 19:13:27,545",
+                            "created": 1755278007.5453532,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -3612,8 +3612,8 @@
                                     "args": [
                                         "none"
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,645",
-                                    "created": 1755176312.6453822,
+                                    "asctime": "2025-08-15 19:13:27,545",
+                                    "created": 1755278007.5452127,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -3622,16 +3622,16 @@
                                     "lineno": 163,
                                     "message": "Loading property for key='none' from source instance",
                                     "module": "__init__",
-                                    "msecs": 645.0,
+                                    "msecs": 545.0,
                                     "msg": "Loading property for key='%s' from source instance",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 102.570161,
+                                    "relativeCreated": 75.513305,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -3640,8 +3640,8 @@
                                         "'not None'",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,645",
-                                    "created": 1755176312.6454442,
+                                    "asctime": "2025-08-15 19:13:27,545",
+                                    "created": 1755278007.5452638,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -3650,16 +3650,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=none): 'not None' ()",
                                     "module": "test",
-                                    "msecs": 645.0,
+                                    "msecs": 545.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 102.632115,
+                                    "relativeCreated": 75.564533,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -3669,8 +3669,8 @@
                                         "'not None'",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,645",
-                                    "created": 1755176312.6454945,
+                                    "asctime": "2025-08-15 19:13:27,545",
+                                    "created": 1755278007.5453064,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -3679,39 +3679,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=none): result = 'not None' ()",
                                     "module": "test",
-                                    "msecs": 645.0,
+                                    "msecs": 545.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 102.682677,
+                                    "relativeCreated": 75.607101,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 645.0,
+                            "msecs": 545.0,
                             "msg": "Data from cached instance with key=none is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 102.73099,
+                            "relativeCreated": 75.653846,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 4.839897155761719e-05
+                            "time_consumption": 4.673004150390625e-05
                         },
                         {
                             "args": [
                                 "5",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:32,645",
-                            "created": 1755176312.6457808,
+                            "asctime": "2025-08-15 19:13:27,545",
+                            "created": 1755278007.5455637,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -3725,8 +3725,8 @@
                                     "args": [
                                         "unknown_key"
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,645",
-                                    "created": 1755176312.645629,
+                                    "asctime": "2025-08-15 19:13:27,545",
+                                    "created": 1755278007.5454292,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -3735,16 +3735,16 @@
                                     "lineno": 179,
                                     "message": "Key 'unknown_key' is not in cached_keys. Uncached data will be returned.",
                                     "module": "__init__",
-                                    "msecs": 645.0,
+                                    "msecs": 545.0,
                                     "msg": "Key '%s' is not in cached_keys. Uncached data will be returned.",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 102.816943,
+                                    "relativeCreated": 75.729899,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -3753,8 +3753,8 @@
                                         "5",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,645",
-                                    "created": 1755176312.645686,
+                                    "asctime": "2025-08-15 19:13:27,545",
+                                    "created": 1755278007.5454798,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -3763,16 +3763,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=unknown_key): 5 ()",
                                     "module": "test",
-                                    "msecs": 645.0,
+                                    "msecs": 545.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 102.874012,
+                                    "relativeCreated": 75.780179,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -3782,8 +3782,8 @@
                                         "5",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,645",
-                                    "created": 1755176312.645734,
+                                    "asctime": "2025-08-15 19:13:27,545",
+                                    "created": 1755278007.5455222,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -3792,43 +3792,43 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=unknown_key): result = 5 ()",
                                     "module": "test",
-                                    "msecs": 645.0,
+                                    "msecs": 545.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 102.922112,
+                                    "relativeCreated": 75.822721,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 645.0,
+                            "msecs": 545.0,
                             "msg": "Data from cached instance with key=unknown_key is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 102.968738,
+                            "relativeCreated": 75.864128,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 4.673004150390625e-05
+                            "time_consumption": 4.1484832763671875e-05
                         }
                     ],
-                    "thread": 140229749231872,
+                    "thread": 140171799056640,
                     "threadName": "MainThread",
-                    "time_consumption": 0.003241300582885742,
-                    "time_finished": "2025-08-14 14:58:32,645",
-                    "time_start": "2025-08-14 14:58:32,642"
+                    "time_consumption": 0.00273895263671875,
+                    "time_finished": "2025-08-15 19:13:27,545",
+                    "time_start": "2025-08-15 19:13:27,542"
                 },
                 "REQ-0004": {
                     "args": null,
-                    "asctime": "2025-08-14 14:58:32,662",
-                    "created": 1755176312.6625688,
+                    "asctime": "2025-08-15 19:13:27,558",
+                    "created": 1755278007.5585122,
                     "exc_text": null,
                     "filename": "__init__.py",
                     "funcName": "testCase",
@@ -3838,20 +3838,20 @@
                     "message": "REQ-0004",
                     "module": "__init__",
                     "moduleLogger": [],
-                    "msecs": 662.0,
+                    "msecs": 558.0,
                     "msg": "REQ-0004",
                     "name": "__tLogger__",
                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/report/__init__.py",
-                    "process": 743412,
+                    "process": 1015645,
                     "processName": "MainProcess",
-                    "relativeCreated": 119.756687,
+                    "relativeCreated": 88.812619,
                     "stack_info": null,
                     "taskName": null,
                     "testcaseLogger": [
                         {
                             "args": [],
-                            "asctime": "2025-08-14 14:58:32,662",
-                            "created": 1755176312.6628714,
+                            "asctime": "2025-08-15 19:13:27,558",
+                            "created": 1755278007.558699,
                             "exc_text": null,
                             "filename": "test_helpers.py",
                             "funcName": "clean",
@@ -3863,8 +3863,8 @@
                             "moduleLogger": [
                                 {
                                     "args": [],
-                                    "asctime": "2025-08-14 14:58:32,662",
-                                    "created": 1755176312.662775,
+                                    "asctime": "2025-08-15 19:13:27,558",
+                                    "created": 1755278007.5586486,
                                     "exc_text": null,
                                     "filename": "test_helpers.py",
                                     "funcName": "clean",
@@ -3873,52 +3873,52 @@
                                     "lineno": 20,
                                     "message": "Cache file does not exist on filesystem.",
                                     "module": "test_helpers",
-                                    "msecs": 662.0,
+                                    "msecs": 558.0,
                                     "msg": "Cache file does not exist on filesystem.",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_helpers.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 119.963247,
+                                    "relativeCreated": 88.94929,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 662.0,
+                            "msecs": 558.0,
                             "msg": "Prepare: Cleanup before testcase execution",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_helpers.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 120.059292,
+                            "relativeCreated": 88.999516,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 9.632110595703125e-05
+                            "time_consumption": 5.030632019042969e-05
                         },
                         {
                             "args": [
-                                "6.007658243179321",
+                                "6.006384372711182",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:38,671",
-                            "created": 1755176318.6712148,
+                            "asctime": "2025-08-15 19:13:33,565",
+                            "created": 1755278013.5657017,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "greater_chk",
                             "levelname": "INFO",
                             "levelno": 20,
                             "lineno": 230,
-                            "message": "Consumed time for full_update is greater expectation (Content 6.007658243179321 and Type is ).",
+                            "message": "Consumed time for full_update is greater expectation (Content 6.006384372711182 and Type is ).",
                             "module": "test",
                             "moduleLogger": [
                                 {
                                     "args": [],
-                                    "asctime": "2025-08-14 14:58:32,663",
-                                    "created": 1755176312.6630664,
+                                    "asctime": "2025-08-15 19:13:27,558",
+                                    "created": 1755278007.5587976,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_load_cache",
@@ -3927,24 +3927,24 @@
                                     "lineno": 237,
                                     "message": "Cache file does not exists (yet).",
                                     "module": "__init__",
-                                    "msecs": 663.0,
+                                    "msecs": 558.0,
                                     "msg": "Cache file does not exists (yet).",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 120.254452,
+                                    "relativeCreated": 89.098151,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "['str', 'unicode', 'integer', 'float', 'list', 'dict', 'none']"
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,663",
-                                    "created": 1755176312.663167,
+                                    "asctime": "2025-08-15 19:13:27,558",
+                                    "created": 1755278007.5588615,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_load_source",
@@ -3953,24 +3953,24 @@
                                     "lineno": 246,
                                     "message": "Loading all data from source - ['str', 'unicode', 'integer', 'float', 'list', 'dict', 'none']",
                                     "module": "__init__",
-                                    "msecs": 663.0,
+                                    "msecs": 558.0,
                                     "msg": "Loading all data from source - %s",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 120.355178,
+                                    "relativeCreated": 89.162091,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "['str', 'unicode', 'integer', 'float', 'list', 'dict', 'none']"
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,663",
-                                    "created": 1755176312.6636105,
+                                    "asctime": "2025-08-15 19:13:27,559",
+                                    "created": 1755278007.5592785,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_load_source",
@@ -3979,24 +3979,24 @@
                                     "lineno": 246,
                                     "message": "Loading all data from source - ['str', 'unicode', 'integer', 'float', 'list', 'dict', 'none']",
                                     "module": "__init__",
-                                    "msecs": 663.0,
+                                    "msecs": 559.0,
                                     "msg": "Loading all data from source - %s",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 120.798356,
+                                    "relativeCreated": 89.579253,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_full_update_sleep.json"
                                     ],
-                                    "asctime": "2025-08-14 14:58:38,670",
-                                    "created": 1755176318.67032,
+                                    "asctime": "2025-08-15 19:13:33,564",
+                                    "created": 1755278013.56479,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_save_only",
@@ -4005,44 +4005,44 @@
                                     "lineno": 301,
                                     "message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_full_update_sleep.json)",
                                     "module": "__init__",
-                                    "msecs": 670.0,
+                                    "msecs": 564.0,
                                     "msg": "cache-file stored (%s)",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 6127.508348,
+                                    "relativeCreated": 6095.090687,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "Consumed time for full_update",
-                                        "6.007658243179321",
+                                        "6.006384372711182",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:38,670",
-                                    "created": 1755176318.6707983,
+                                    "asctime": "2025-08-15 19:13:33,565",
+                                    "created": 1755278013.5652878,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
                                     "levelname": "DEBUG",
                                     "levelno": 10,
                                     "lineno": 22,
-                                    "message": "Result (Consumed time for full_update): 6.007658243179321 ()",
+                                    "message": "Result (Consumed time for full_update): 6.006384372711182 ()",
                                     "module": "test",
-                                    "msecs": 670.0,
+                                    "msecs": 565.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 6127.98652,
+                                    "relativeCreated": 6095.588615,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -4052,8 +4052,8 @@
                                         "6.0",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:38,670",
-                                    "created": 1755176318.6709988,
+                                    "asctime": "2025-08-15 19:13:33,565",
+                                    "created": 1755278013.565489,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -4062,74 +4062,74 @@
                                     "lineno": 26,
                                     "message": "Expectation (Consumed time for full_update): result > 6.0 ()",
                                     "module": "test",
-                                    "msecs": 670.0,
+                                    "msecs": 565.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 6128.186873,
+                                    "relativeCreated": 6095.78984,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 671.0,
+                            "msecs": 565.0,
                             "msg": "Consumed time for full_update is greater expectation (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 6128.402991,
+                            "relativeCreated": 6096.00231,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.00021600723266601562
+                            "time_consumption": 0.00021266937255859375
                         },
                         {
                             "args": [
-                                "6.007658243179321",
+                                "6.006384372711182",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:38,671",
-                            "created": 1755176318.671857,
+                            "asctime": "2025-08-15 19:13:33,566",
+                            "created": 1755278013.5663404,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "less_chk",
                             "levelname": "INFO",
                             "levelno": 20,
                             "lineno": 207,
-                            "message": "Consumed time for full_update is greater expectation (Content 6.007658243179321 and Type is ).",
+                            "message": "Consumed time for full_update is greater expectation (Content 6.006384372711182 and Type is ).",
                             "module": "test",
                             "moduleLogger": [
                                 {
                                     "args": [
                                         "Consumed time for full_update",
-                                        "6.007658243179321",
+                                        "6.006384372711182",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:38,671",
-                                    "created": 1755176318.6715243,
+                                    "asctime": "2025-08-15 19:13:33,566",
+                                    "created": 1755278013.5660114,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
                                     "levelname": "DEBUG",
                                     "levelno": 10,
                                     "lineno": 22,
-                                    "message": "Result (Consumed time for full_update): 6.007658243179321 ()",
+                                    "message": "Result (Consumed time for full_update): 6.006384372711182 ()",
                                     "module": "test",
-                                    "msecs": 671.0,
+                                    "msecs": 566.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 6128.712475,
+                                    "relativeCreated": 6096.311963,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -4139,8 +4139,8 @@
                                         "6.5",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:38,671",
-                                    "created": 1755176318.671684,
+                                    "asctime": "2025-08-15 19:13:33,566",
+                                    "created": 1755278013.5661695,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -4149,43 +4149,43 @@
                                     "lineno": 26,
                                     "message": "Expectation (Consumed time for full_update): result < 6.5 ()",
                                     "module": "test",
-                                    "msecs": 671.0,
+                                    "msecs": 566.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 6128.872209,
+                                    "relativeCreated": 6096.470152,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 671.0,
+                            "msecs": 566.0,
                             "msg": "Consumed time for full_update is greater expectation (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 6129.045149,
+                            "relativeCreated": 6096.641082,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.00017309188842773438
+                            "time_consumption": 0.0001709461212158203
                         }
                     ],
-                    "thread": 140229749231872,
+                    "thread": 140171799056640,
                     "threadName": "MainThread",
-                    "time_consumption": 6.009288311004639,
-                    "time_finished": "2025-08-14 14:58:38,671",
-                    "time_start": "2025-08-14 14:58:32,662"
+                    "time_consumption": 6.007828235626221,
+                    "time_finished": "2025-08-15 19:13:33,566",
+                    "time_start": "2025-08-15 19:13:27,558"
                 },
                 "REQ-0005": {
                     "args": null,
-                    "asctime": "2025-08-14 14:58:32,649",
-                    "created": 1755176312.6496592,
+                    "asctime": "2025-08-15 19:13:27,548",
+                    "created": 1755278007.5488384,
                     "exc_text": null,
                     "filename": "__init__.py",
                     "funcName": "testCase",
@@ -4195,20 +4195,20 @@
                     "message": "REQ-0005",
                     "module": "__init__",
                     "moduleLogger": [],
-                    "msecs": 649.0,
+                    "msecs": 548.0,
                     "msg": "REQ-0005",
                     "name": "__tLogger__",
                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/report/__init__.py",
-                    "process": 743412,
+                    "process": 1015645,
                     "processName": "MainProcess",
-                    "relativeCreated": 106.847221,
+                    "relativeCreated": 79.139029,
                     "stack_info": null,
                     "taskName": null,
                     "testcaseLogger": [
                         {
                             "args": [],
-                            "asctime": "2025-08-14 14:58:32,649",
-                            "created": 1755176312.6498413,
+                            "asctime": "2025-08-15 19:13:27,548",
+                            "created": 1755278007.5489795,
                             "exc_text": null,
                             "filename": "test_helpers.py",
                             "funcName": "clean",
@@ -4220,8 +4220,8 @@
                             "moduleLogger": [
                                 {
                                     "args": [],
-                                    "asctime": "2025-08-14 14:58:32,649",
-                                    "created": 1755176312.6497867,
+                                    "asctime": "2025-08-15 19:13:27,548",
+                                    "created": 1755278007.548935,
                                     "exc_text": null,
                                     "filename": "test_helpers.py",
                                     "funcName": "clean",
@@ -4230,38 +4230,38 @@
                                     "lineno": 20,
                                     "message": "Cache file does not exist on filesystem.",
                                     "module": "test_helpers",
-                                    "msecs": 649.0,
+                                    "msecs": 548.0,
                                     "msg": "Cache file does not exist on filesystem.",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_helpers.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 106.974803,
+                                    "relativeCreated": 79.235485,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 649.0,
+                            "msecs": 548.0,
                             "msg": "Prepare: Cleanup before testcase execution",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_helpers.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 107.029548,
+                            "relativeCreated": 79.280121,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 5.459785461425781e-05
+                            "time_consumption": 4.458427429199219e-05
                         },
                         {
                             "args": [
                                 "'property_cache_json'"
                             ],
-                            "asctime": "2025-08-14 14:58:32,653",
-                            "created": 1755176312.6538973,
+                            "asctime": "2025-08-15 19:13:27,552",
+                            "created": 1755278007.552053,
                             "exc_text": null,
                             "filename": "test_cached_data.py",
                             "funcName": "cached_data",
@@ -4273,8 +4273,8 @@
                             "moduleLogger": [
                                 {
                                     "args": [],
-                                    "asctime": "2025-08-14 14:58:32,649",
-                                    "created": 1755176312.6499484,
+                                    "asctime": "2025-08-15 19:13:27,549",
+                                    "created": 1755278007.5490694,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_load_cache",
@@ -4283,24 +4283,24 @@
                                     "lineno": 237,
                                     "message": "Cache file does not exists (yet).",
                                     "module": "__init__",
-                                    "msecs": 649.0,
+                                    "msecs": 549.0,
                                     "msg": "Cache file does not exists (yet).",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 107.136512,
+                                    "relativeCreated": 79.369985,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "str"
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,650",
-                                    "created": 1755176312.6500232,
+                                    "asctime": "2025-08-15 19:13:27,549",
+                                    "created": 1755278007.5491316,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -4309,52 +4309,52 @@
                                     "lineno": 163,
                                     "message": "Loading property for key='str' from source instance",
                                     "module": "__init__",
-                                    "msecs": 650.0,
+                                    "msecs": 549.0,
                                     "msg": "Loading property for key='%s' from source instance",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 107.211308,
+                                    "relativeCreated": 79.432152,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "str",
                                         "string",
-                                        1755176312
+                                        1755278007
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,650",
-                                    "created": 1755176312.6500807,
+                                    "asctime": "2025-08-15 19:13:27,549",
+                                    "created": 1755278007.549179,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
                                     "levelname": "DEBUG",
                                     "levelno": 10,
                                     "lineno": 167,
-                                    "message": "Adding key=str, value=string with timestamp=1755176312 to chache",
+                                    "message": "Adding key=str, value=string with timestamp=1755278007 to chache",
                                     "module": "__init__",
-                                    "msecs": 650.0,
+                                    "msecs": 549.0,
                                     "msg": "Adding key=%s, value=%s with timestamp=%d to chache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 107.268784,
+                                    "relativeCreated": 79.479724,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_load_on_init.json"
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,650",
-                                    "created": 1755176312.650496,
+                                    "asctime": "2025-08-15 19:13:27,549",
+                                    "created": 1755278007.5494845,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_save_only",
@@ -4363,24 +4363,24 @@
                                     "lineno": 301,
                                     "message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_load_on_init.json)",
                                     "module": "__init__",
-                                    "msecs": 650.0,
+                                    "msecs": 549.0,
                                     "msg": "cache-file stored (%s)",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 107.684094,
+                                    "relativeCreated": 79.785257,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "integer"
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,650",
-                                    "created": 1755176312.650626,
+                                    "asctime": "2025-08-15 19:13:27,549",
+                                    "created": 1755278007.5495806,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -4389,52 +4389,52 @@
                                     "lineno": 163,
                                     "message": "Loading property for key='integer' from source instance",
                                     "module": "__init__",
-                                    "msecs": 650.0,
+                                    "msecs": 549.0,
                                     "msg": "Loading property for key='%s' from source instance",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 107.81403,
+                                    "relativeCreated": 79.881123,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "integer",
                                         17,
-                                        1755176312
+                                        1755278007
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,650",
-                                    "created": 1755176312.6506925,
+                                    "asctime": "2025-08-15 19:13:27,549",
+                                    "created": 1755278007.5496345,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
                                     "levelname": "DEBUG",
                                     "levelno": 10,
                                     "lineno": 167,
-                                    "message": "Adding key=integer, value=17 with timestamp=1755176312 to chache",
+                                    "message": "Adding key=integer, value=17 with timestamp=1755278007 to chache",
                                     "module": "__init__",
-                                    "msecs": 650.0,
+                                    "msecs": 549.0,
                                     "msg": "Adding key=%s, value=%s with timestamp=%d to chache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 107.880555,
+                                    "relativeCreated": 79.935222,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_load_on_init.json"
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,650",
-                                    "created": 1755176312.6509337,
+                                    "asctime": "2025-08-15 19:13:27,549",
+                                    "created": 1755278007.5498266,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_save_only",
@@ -4443,24 +4443,24 @@
                                     "lineno": 301,
                                     "message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_load_on_init.json)",
                                     "module": "__init__",
-                                    "msecs": 650.0,
+                                    "msecs": 549.0,
                                     "msg": "cache-file stored (%s)",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 108.121746,
+                                    "relativeCreated": 80.127218,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "list"
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,651",
-                                    "created": 1755176312.651078,
+                                    "asctime": "2025-08-15 19:13:27,549",
+                                    "created": 1755278007.549952,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -4469,16 +4469,16 @@
                                     "lineno": 163,
                                     "message": "Loading property for key='list' from source instance",
                                     "module": "__init__",
-                                    "msecs": 651.0,
+                                    "msecs": 549.0,
                                     "msg": "Loading property for key='%s' from source instance",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 108.265902,
+                                    "relativeCreated": 80.252677,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -4490,36 +4490,36 @@
                                             "3",
                                             4
                                         ],
-                                        1755176312
+                                        1755278007
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,651",
-                                    "created": 1755176312.6511426,
+                                    "asctime": "2025-08-15 19:13:27,550",
+                                    "created": 1755278007.5500045,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
                                     "levelname": "DEBUG",
                                     "levelno": 10,
                                     "lineno": 167,
-                                    "message": "Adding key=list, value=[1, 'two', '3', 4] with timestamp=1755176312 to chache",
+                                    "message": "Adding key=list, value=[1, 'two', '3', 4] with timestamp=1755278007 to chache",
                                     "module": "__init__",
-                                    "msecs": 651.0,
+                                    "msecs": 550.0,
                                     "msg": "Adding key=%s, value=%s with timestamp=%d to chache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 108.330685,
+                                    "relativeCreated": 80.30513,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_load_on_init.json"
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,652",
-                                    "created": 1755176312.6521978,
+                                    "asctime": "2025-08-15 19:13:27,551",
+                                    "created": 1755278007.5510385,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_save_only",
@@ -4528,24 +4528,24 @@
                                     "lineno": 301,
                                     "message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_load_on_init.json)",
                                     "module": "__init__",
-                                    "msecs": 652.0,
+                                    "msecs": 551.0,
                                     "msg": "cache-file stored (%s)",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 109.38607,
+                                    "relativeCreated": 81.339088,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "dict"
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,652",
-                                    "created": 1755176312.652368,
+                                    "asctime": "2025-08-15 19:13:27,551",
+                                    "created": 1755278007.5511563,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -4554,16 +4554,16 @@
                                     "lineno": 163,
                                     "message": "Loading property for key='dict' from source instance",
                                     "module": "__init__",
-                                    "msecs": 652.0,
+                                    "msecs": 551.0,
                                     "msg": "Loading property for key='%s' from source instance",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 109.556221,
+                                    "relativeCreated": 81.45681,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -4575,36 +4575,36 @@
                                             "3": "3",
                                             "4": 4
                                         },
-                                        1755176312
+                                        1755278007
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,652",
-                                    "created": 1755176312.6524425,
+                                    "asctime": "2025-08-15 19:13:27,551",
+                                    "created": 1755278007.5512106,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
                                     "levelname": "DEBUG",
                                     "levelno": 10,
                                     "lineno": 167,
-                                    "message": "Adding key=dict, value={'1': 1, '2': 'two', '3': '3', '4': 4} with timestamp=1755176312 to chache",
+                                    "message": "Adding key=dict, value={'1': 1, '2': 'two', '3': '3', '4': 4} with timestamp=1755278007 to chache",
                                     "module": "__init__",
-                                    "msecs": 652.0,
+                                    "msecs": 551.0,
                                     "msg": "Adding key=%s, value=%s with timestamp=%d to chache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 109.630581,
+                                    "relativeCreated": 81.511279,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_load_on_init.json"
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,652",
-                                    "created": 1755176312.6528673,
+                                    "asctime": "2025-08-15 19:13:27,551",
+                                    "created": 1755278007.5514953,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_save_only",
@@ -4613,24 +4613,24 @@
                                     "lineno": 301,
                                     "message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_load_on_init.json)",
                                     "module": "__init__",
-                                    "msecs": 652.0,
+                                    "msecs": 551.0,
                                     "msg": "cache-file stored (%s)",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 110.05533,
+                                    "relativeCreated": 81.796073,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "none"
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,653",
-                                    "created": 1755176312.6530616,
+                                    "asctime": "2025-08-15 19:13:27,551",
+                                    "created": 1755278007.551611,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -4639,52 +4639,52 @@
                                     "lineno": 163,
                                     "message": "Loading property for key='none' from source instance",
                                     "module": "__init__",
-                                    "msecs": 653.0,
+                                    "msecs": 551.0,
                                     "msg": "Loading property for key='%s' from source instance",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 110.249849,
+                                    "relativeCreated": 81.911523,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "none",
                                         null,
-                                        1755176312
+                                        1755278007
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,653",
-                                    "created": 1755176312.6531684,
+                                    "asctime": "2025-08-15 19:13:27,551",
+                                    "created": 1755278007.5516658,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
                                     "levelname": "DEBUG",
                                     "levelno": 10,
                                     "lineno": 167,
-                                    "message": "Adding key=none, value=None with timestamp=1755176312 to chache",
+                                    "message": "Adding key=none, value=None with timestamp=1755278007 to chache",
                                     "module": "__init__",
-                                    "msecs": 653.0,
+                                    "msecs": 551.0,
                                     "msg": "Adding key=%s, value=%s with timestamp=%d to chache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 110.356448,
+                                    "relativeCreated": 81.966166,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_load_on_init.json"
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,653",
-                                    "created": 1755176312.6537185,
+                                    "asctime": "2025-08-15 19:13:27,551",
+                                    "created": 1755278007.5519416,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_save_only",
@@ -4693,39 +4693,39 @@
                                     "lineno": 301,
                                     "message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_load_on_init.json)",
                                     "module": "__init__",
-                                    "msecs": 653.0,
+                                    "msecs": 551.0,
                                     "msg": "cache-file stored (%s)",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 110.90663,
+                                    "relativeCreated": 82.242354,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 653.0,
+                            "msecs": 552.0,
                             "msg": "Prepare: First usage of %s with a class holding the data to be cached",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_cached_data.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 111.085354,
+                            "relativeCreated": 82.353591,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.00017881393432617188
+                            "time_consumption": 0.00011134147644042969
                         },
                         {
                             "args": [
                                 "'string'",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:32,654",
-                            "created": 1755176312.6545851,
+                            "asctime": "2025-08-15 19:13:27,552",
+                            "created": 1755278007.552488,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -4739,8 +4739,8 @@
                                     "args": [
                                         "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_load_on_init.json"
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,654",
-                                    "created": 1755176312.6541836,
+                                    "asctime": "2025-08-15 19:13:27,552",
+                                    "created": 1755278007.5522575,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_load_only",
@@ -4749,24 +4749,24 @@
                                     "lineno": 296,
                                     "message": "Loading properties from cache (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_load_on_init.json)",
                                     "module": "__init__",
-                                    "msecs": 654.0,
+                                    "msecs": 552.0,
                                     "msg": "Loading properties from cache (%s)",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 111.371735,
+                                    "relativeCreated": 82.558151,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "str"
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,654",
-                                    "created": 1755176312.6543214,
+                                    "asctime": "2025-08-15 19:13:27,552",
+                                    "created": 1755278007.5523326,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -4775,16 +4775,16 @@
                                     "lineno": 157,
                                     "message": "Providing property for 'str' from cache",
                                     "module": "__init__",
-                                    "msecs": 654.0,
+                                    "msecs": 552.0,
                                     "msg": "Providing property for '%s' from cache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 111.50958,
+                                    "relativeCreated": 82.633276,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -4793,8 +4793,8 @@
                                         "'string'",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,654",
-                                    "created": 1755176312.6544194,
+                                    "asctime": "2025-08-15 19:13:27,552",
+                                    "created": 1755278007.5523915,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -4803,16 +4803,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=str): 'string' ()",
                                     "module": "test",
-                                    "msecs": 654.0,
+                                    "msecs": 552.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 111.607644,
+                                    "relativeCreated": 82.69193,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -4822,8 +4822,8 @@
                                         "'string'",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,654",
-                                    "created": 1755176312.6545172,
+                                    "asctime": "2025-08-15 19:13:27,552",
+                                    "created": 1755278007.5524397,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -4832,39 +4832,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=str): result = 'string' ()",
                                     "module": "test",
-                                    "msecs": 654.0,
+                                    "msecs": 552.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 111.705396,
+                                    "relativeCreated": 82.740322,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 654.0,
+                            "msecs": 552.0,
                             "msg": "Data from cached instance with key=str is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 111.773263,
+                            "relativeCreated": 82.788796,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 6.794929504394531e-05
+                            "time_consumption": 4.839897155761719e-05
                         },
                         {
                             "args": [
                                 "'__unicode__'",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:32,655",
-                            "created": 1755176312.6554353,
+                            "asctime": "2025-08-15 19:13:27,553",
+                            "created": 1755278007.553132,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -4878,8 +4878,8 @@
                                     "args": [
                                         "unicode"
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,654",
-                                    "created": 1755176312.6546922,
+                                    "asctime": "2025-08-15 19:13:27,552",
+                                    "created": 1755278007.5525699,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -4888,52 +4888,52 @@
                                     "lineno": 163,
                                     "message": "Loading property for key='unicode' from source instance",
                                     "module": "__init__",
-                                    "msecs": 654.0,
+                                    "msecs": 552.0,
                                     "msg": "Loading property for key='%s' from source instance",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 111.880102,
+                                    "relativeCreated": 82.870344,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "unicode",
                                         "__unicode__",
-                                        1755176312
+                                        1755278007
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,654",
-                                    "created": 1755176312.6547513,
+                                    "asctime": "2025-08-15 19:13:27,552",
+                                    "created": 1755278007.5526187,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
                                     "levelname": "DEBUG",
                                     "levelno": 10,
                                     "lineno": 167,
-                                    "message": "Adding key=unicode, value=__unicode__ with timestamp=1755176312 to chache",
+                                    "message": "Adding key=unicode, value=__unicode__ with timestamp=1755278007 to chache",
                                     "module": "__init__",
-                                    "msecs": 654.0,
+                                    "msecs": 552.0,
                                     "msg": "Adding key=%s, value=%s with timestamp=%d to chache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 111.939239,
+                                    "relativeCreated": 82.919363,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_load_on_init.json"
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,655",
-                                    "created": 1755176312.6551409,
+                                    "asctime": "2025-08-15 19:13:27,552",
+                                    "created": 1755278007.552913,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_save_only",
@@ -4942,16 +4942,16 @@
                                     "lineno": 301,
                                     "message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_load_on_init.json)",
                                     "module": "__init__",
-                                    "msecs": 655.0,
+                                    "msecs": 552.0,
                                     "msg": "cache-file stored (%s)",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 112.329003,
+                                    "relativeCreated": 83.213553,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -4960,8 +4960,8 @@
                                         "'__unicode__'",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,655",
-                                    "created": 1755176312.6553063,
+                                    "asctime": "2025-08-15 19:13:27,553",
+                                    "created": 1755278007.5530272,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -4970,16 +4970,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=unicode): '__unicode__' ()",
                                     "module": "test",
-                                    "msecs": 655.0,
+                                    "msecs": 553.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 112.494432,
+                                    "relativeCreated": 83.327664,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -4989,8 +4989,8 @@
                                         "'__unicode__'",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,655",
-                                    "created": 1755176312.6553776,
+                                    "asctime": "2025-08-15 19:13:27,553",
+                                    "created": 1755278007.5530858,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -4999,39 +4999,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=unicode): result = '__unicode__' ()",
                                     "module": "test",
-                                    "msecs": 655.0,
+                                    "msecs": 553.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 112.565685,
+                                    "relativeCreated": 83.38632,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 655.0,
+                            "msecs": 553.0,
                             "msg": "Data from cached instance with key=unicode is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 112.623485,
+                            "relativeCreated": 83.432658,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 5.7697296142578125e-05
+                            "time_consumption": 4.6253204345703125e-05
                         },
                         {
                             "args": [
                                 "17",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:32,655",
-                            "created": 1755176312.6557062,
+                            "asctime": "2025-08-15 19:13:27,553",
+                            "created": 1755278007.5533512,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -5045,8 +5045,8 @@
                                     "args": [
                                         "integer"
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,655",
-                                    "created": 1755176312.6555376,
+                                    "asctime": "2025-08-15 19:13:27,553",
+                                    "created": 1755278007.5532112,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -5055,16 +5055,16 @@
                                     "lineno": 157,
                                     "message": "Providing property for 'integer' from cache",
                                     "module": "__init__",
-                                    "msecs": 655.0,
+                                    "msecs": 553.0,
                                     "msg": "Providing property for '%s' from cache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 112.72586,
+                                    "relativeCreated": 83.511776,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -5073,8 +5073,8 @@
                                         "17",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,655",
-                                    "created": 1755176312.6556027,
+                                    "asctime": "2025-08-15 19:13:27,553",
+                                    "created": 1755278007.5532653,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -5083,16 +5083,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=integer): 17 ()",
                                     "module": "test",
-                                    "msecs": 655.0,
+                                    "msecs": 553.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 112.790658,
+                                    "relativeCreated": 83.565945,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -5102,8 +5102,8 @@
                                         "17",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,655",
-                                    "created": 1755176312.6556556,
+                                    "asctime": "2025-08-15 19:13:27,553",
+                                    "created": 1755278007.5533094,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -5112,39 +5112,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=integer): result = 17 ()",
                                     "module": "test",
-                                    "msecs": 655.0,
+                                    "msecs": 553.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 112.843748,
+                                    "relativeCreated": 83.60998,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 655.0,
+                            "msecs": 553.0,
                             "msg": "Data from cached instance with key=integer is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 112.89433,
+                            "relativeCreated": 83.651665,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 5.054473876953125e-05
+                            "time_consumption": 4.172325134277344e-05
                         },
                         {
                             "args": [
                                 "2.71828",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:32,656",
-                            "created": 1755176312.656518,
+                            "asctime": "2025-08-15 19:13:27,554",
+                            "created": 1755278007.5540116,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -5158,8 +5158,8 @@
                                     "args": [
                                         "float"
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,655",
-                                    "created": 1755176312.6557984,
+                                    "asctime": "2025-08-15 19:13:27,553",
+                                    "created": 1755278007.5534232,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -5168,52 +5168,52 @@
                                     "lineno": 163,
                                     "message": "Loading property for key='float' from source instance",
                                     "module": "__init__",
-                                    "msecs": 655.0,
+                                    "msecs": 553.0,
                                     "msg": "Loading property for key='%s' from source instance",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 112.986716,
+                                    "relativeCreated": 83.723627,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "float",
                                         2.71828,
-                                        1755176312
+                                        1755278007
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,655",
-                                    "created": 1755176312.655855,
+                                    "asctime": "2025-08-15 19:13:27,553",
+                                    "created": 1755278007.5534694,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
                                     "levelname": "DEBUG",
                                     "levelno": 10,
                                     "lineno": 167,
-                                    "message": "Adding key=float, value=2.71828 with timestamp=1755176312 to chache",
+                                    "message": "Adding key=float, value=2.71828 with timestamp=1755278007 to chache",
                                     "module": "__init__",
-                                    "msecs": 655.0,
+                                    "msecs": 553.0,
                                     "msg": "Adding key=%s, value=%s with timestamp=%d to chache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 113.042855,
+                                    "relativeCreated": 83.770086,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_load_on_init.json"
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,656",
-                                    "created": 1755176312.6562545,
+                                    "asctime": "2025-08-15 19:13:27,553",
+                                    "created": 1755278007.5537946,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_save_only",
@@ -5222,16 +5222,16 @@
                                     "lineno": 301,
                                     "message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_load_on_init.json)",
                                     "module": "__init__",
-                                    "msecs": 656.0,
+                                    "msecs": 553.0,
                                     "msg": "cache-file stored (%s)",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 113.442464,
+                                    "relativeCreated": 84.095205,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -5240,8 +5240,8 @@
                                         "2.71828",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,656",
-                                    "created": 1755176312.6563969,
+                                    "asctime": "2025-08-15 19:13:27,553",
+                                    "created": 1755278007.553909,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -5250,16 +5250,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=float): 2.71828 ()",
                                     "module": "test",
-                                    "msecs": 656.0,
+                                    "msecs": 553.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 113.58477,
+                                    "relativeCreated": 84.209696,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -5269,8 +5269,8 @@
                                         "2.71828",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,656",
-                                    "created": 1755176312.6564622,
+                                    "asctime": "2025-08-15 19:13:27,553",
+                                    "created": 1755278007.553965,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -5279,39 +5279,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=float): result = 2.71828 ()",
                                     "module": "test",
-                                    "msecs": 656.0,
+                                    "msecs": 553.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 113.65014,
+                                    "relativeCreated": 84.265629,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 656.0,
+                            "msecs": 554.0,
                             "msg": "Data from cached instance with key=float is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 113.705869,
+                            "relativeCreated": 84.312173,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 5.5789947509765625e-05
+                            "time_consumption": 4.649162292480469e-05
                         },
                         {
                             "args": [
                                 "[1, 'two', '3', 4]",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:32,656",
-                            "created": 1755176312.656825,
+                            "asctime": "2025-08-15 19:13:27,554",
+                            "created": 1755278007.5542636,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -5325,8 +5325,8 @@
                                     "args": [
                                         "list"
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,656",
-                                    "created": 1755176312.6566195,
+                                    "asctime": "2025-08-15 19:13:27,554",
+                                    "created": 1755278007.5540946,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -5335,16 +5335,16 @@
                                     "lineno": 157,
                                     "message": "Providing property for 'list' from cache",
                                     "module": "__init__",
-                                    "msecs": 656.0,
+                                    "msecs": 554.0,
                                     "msg": "Providing property for '%s' from cache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 113.80774,
+                                    "relativeCreated": 84.39527,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -5353,8 +5353,8 @@
                                         "[ 1, 'two', '3', 4 ]",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,656",
-                                    "created": 1755176312.656692,
+                                    "asctime": "2025-08-15 19:13:27,554",
+                                    "created": 1755278007.5541558,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -5363,16 +5363,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=list): [ 1, 'two', '3', 4 ] ()",
                                     "module": "test",
-                                    "msecs": 656.0,
+                                    "msecs": 554.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 113.880173,
+                                    "relativeCreated": 84.456441,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -5382,8 +5382,8 @@
                                         "[ 1, 'two', '3', 4 ]",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,656",
-                                    "created": 1755176312.6567519,
+                                    "asctime": "2025-08-15 19:13:27,554",
+                                    "created": 1755278007.5542057,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -5392,39 +5392,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=list): result = [ 1, 'two', '3', 4 ] ()",
                                     "module": "test",
-                                    "msecs": 656.0,
+                                    "msecs": 554.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 113.939926,
+                                    "relativeCreated": 84.506374,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 656.0,
+                            "msecs": 554.0,
                             "msg": "Data from cached instance with key=list is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 114.013118,
+                            "relativeCreated": 84.56416,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 7.319450378417969e-05
+                            "time_consumption": 5.793571472167969e-05
                         },
                         {
                             "args": [
                                 "{'1': 1, '2': 'two', '3': '3', '4': 4}",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:32,657",
-                            "created": 1755176312.6571276,
+                            "asctime": "2025-08-15 19:13:27,554",
+                            "created": 1755278007.5545146,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -5438,8 +5438,8 @@
                                     "args": [
                                         "dict"
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,656",
-                                    "created": 1755176312.65692,
+                                    "asctime": "2025-08-15 19:13:27,554",
+                                    "created": 1755278007.554342,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -5448,16 +5448,16 @@
                                     "lineno": 157,
                                     "message": "Providing property for 'dict' from cache",
                                     "module": "__init__",
-                                    "msecs": 656.0,
+                                    "msecs": 554.0,
                                     "msg": "Providing property for '%s' from cache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 114.108034,
+                                    "relativeCreated": 84.642623,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -5466,8 +5466,8 @@
                                         "{ '1': 1, '2': 'two', '3': '3', '4': 4 }",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,656",
-                                    "created": 1755176312.6569922,
+                                    "asctime": "2025-08-15 19:13:27,554",
+                                    "created": 1755278007.5544024,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -5476,16 +5476,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=dict): { '1': 1, '2': 'two', '3': '3', '4': 4 } ()",
                                     "module": "test",
-                                    "msecs": 656.0,
+                                    "msecs": 554.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 114.180326,
+                                    "relativeCreated": 84.70298,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -5495,8 +5495,8 @@
                                         "{ '1': 1, '2': 'two', '3': '3', '4': 4 }",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,657",
-                                    "created": 1755176312.6570554,
+                                    "asctime": "2025-08-15 19:13:27,554",
+                                    "created": 1755278007.554456,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -5505,39 +5505,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=dict): result = { '1': 1, '2': 'two', '3': '3', '4': 4 } ()",
                                     "module": "test",
-                                    "msecs": 657.0,
+                                    "msecs": 554.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 114.243673,
+                                    "relativeCreated": 84.756768,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 657.0,
+                            "msecs": 554.0,
                             "msg": "Data from cached instance with key=dict is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 114.315867,
+                            "relativeCreated": 84.815352,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 7.224082946777344e-05
+                            "time_consumption": 5.8650970458984375e-05
                         },
                         {
                             "args": [
                                 "None",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:32,657",
-                            "created": 1755176312.6573818,
+                            "asctime": "2025-08-15 19:13:27,554",
+                            "created": 1755278007.5547376,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -5551,8 +5551,8 @@
                                     "args": [
                                         "none"
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,657",
-                                    "created": 1755176312.6572149,
+                                    "asctime": "2025-08-15 19:13:27,554",
+                                    "created": 1755278007.5545893,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -5561,16 +5561,16 @@
                                     "lineno": 157,
                                     "message": "Providing property for 'none' from cache",
                                     "module": "__init__",
-                                    "msecs": 657.0,
+                                    "msecs": 554.0,
                                     "msg": "Providing property for '%s' from cache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 114.403091,
+                                    "relativeCreated": 84.889678,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -5579,8 +5579,8 @@
                                         "None",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,657",
-                                    "created": 1755176312.6572766,
+                                    "asctime": "2025-08-15 19:13:27,554",
+                                    "created": 1755278007.5546527,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -5589,16 +5589,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=none): None ()",
                                     "module": "test",
-                                    "msecs": 657.0,
+                                    "msecs": 554.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 114.464796,
+                                    "relativeCreated": 84.953257,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -5608,8 +5608,8 @@
                                         "None",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,657",
-                                    "created": 1755176312.6573281,
+                                    "asctime": "2025-08-15 19:13:27,554",
+                                    "created": 1755278007.554696,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -5618,39 +5618,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=none): result = None ()",
                                     "module": "test",
-                                    "msecs": 657.0,
+                                    "msecs": 554.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 114.516156,
+                                    "relativeCreated": 84.996819,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 657.0,
+                            "msecs": 554.0,
                             "msg": "Data from cached instance with key=none is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 114.570022,
+                            "relativeCreated": 85.03837,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 5.364418029785156e-05
+                            "time_consumption": 4.1484832763671875e-05
                         },
                         {
                             "args": [
                                 "5",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:32,657",
-                            "created": 1755176312.657637,
+                            "asctime": "2025-08-15 19:13:27,554",
+                            "created": 1755278007.5549517,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -5664,8 +5664,8 @@
                                     "args": [
                                         "unknown_key"
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,657",
-                                    "created": 1755176312.6574714,
+                                    "asctime": "2025-08-15 19:13:27,554",
+                                    "created": 1755278007.554812,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -5674,16 +5674,16 @@
                                     "lineno": 179,
                                     "message": "Key 'unknown_key' is not in cached_keys. Uncached data will be returned.",
                                     "module": "__init__",
-                                    "msecs": 657.0,
+                                    "msecs": 554.0,
                                     "msg": "Key '%s' is not in cached_keys. Uncached data will be returned.",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 114.659577,
+                                    "relativeCreated": 85.11258,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -5692,8 +5692,8 @@
                                         "5",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,657",
-                                    "created": 1755176312.657531,
+                                    "asctime": "2025-08-15 19:13:27,554",
+                                    "created": 1755278007.554861,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -5702,16 +5702,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=unknown_key): 5 ()",
                                     "module": "test",
-                                    "msecs": 657.0,
+                                    "msecs": 554.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 114.719217,
+                                    "relativeCreated": 85.161767,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -5721,8 +5721,8 @@
                                         "5",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,657",
-                                    "created": 1755176312.6575863,
+                                    "asctime": "2025-08-15 19:13:27,554",
+                                    "created": 1755278007.5549068,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -5731,43 +5731,43 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=unknown_key): result = 5 ()",
                                     "module": "test",
-                                    "msecs": 657.0,
+                                    "msecs": 554.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 114.77445,
+                                    "relativeCreated": 85.207455,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 657.0,
+                            "msecs": 554.0,
                             "msg": "Data from cached instance with key=unknown_key is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 114.825033,
+                            "relativeCreated": 85.252199,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 5.054473876953125e-05
+                            "time_consumption": 4.482269287109375e-05
                         }
                     ],
-                    "thread": 140229749231872,
+                    "thread": 140171799056640,
                     "threadName": "MainThread",
-                    "time_consumption": 0.007977724075317383,
-                    "time_finished": "2025-08-14 14:58:32,657",
-                    "time_start": "2025-08-14 14:58:32,649"
+                    "time_consumption": 0.006113290786743164,
+                    "time_finished": "2025-08-15 19:13:27,554",
+                    "time_start": "2025-08-15 19:13:27,548"
                 },
                 "REQ-0006": {
                     "args": null,
-                    "asctime": "2025-08-14 14:58:38,680",
-                    "created": 1755176318.680951,
+                    "asctime": "2025-08-15 19:13:33,571",
+                    "created": 1755278013.571209,
                     "exc_text": null,
                     "filename": "__init__.py",
                     "funcName": "testCase",
@@ -5777,20 +5777,20 @@
                     "message": "REQ-0006",
                     "module": "__init__",
                     "moduleLogger": [],
-                    "msecs": 680.0,
+                    "msecs": 571.0,
                     "msg": "REQ-0006",
                     "name": "__tLogger__",
                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/report/__init__.py",
-                    "process": 743412,
+                    "process": 1015645,
                     "processName": "MainProcess",
-                    "relativeCreated": 6138.139059,
+                    "relativeCreated": 6101.509554,
                     "stack_info": null,
                     "taskName": null,
                     "testcaseLogger": [
                         {
                             "args": [],
-                            "asctime": "2025-08-14 14:58:38,681",
-                            "created": 1755176318.681744,
+                            "asctime": "2025-08-15 19:13:33,571",
+                            "created": 1755278013.571594,
                             "exc_text": null,
                             "filename": "test_helpers.py",
                             "funcName": "clean",
@@ -5802,8 +5802,8 @@
                             "moduleLogger": [
                                 {
                                     "args": [],
-                                    "asctime": "2025-08-14 14:58:38,681",
-                                    "created": 1755176318.6814256,
+                                    "asctime": "2025-08-15 19:13:33,571",
+                                    "created": 1755278013.5714414,
                                     "exc_text": null,
                                     "filename": "test_helpers.py",
                                     "funcName": "clean",
@@ -5812,38 +5812,38 @@
                                     "lineno": 17,
                                     "message": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
                                     "module": "test_helpers",
-                                    "msecs": 681.0,
+                                    "msecs": 571.0,
                                     "msg": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_helpers.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 6138.61379,
+                                    "relativeCreated": 6101.742026,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 681.0,
+                            "msecs": 571.0,
                             "msg": "Prepare: Cleanup before testcase execution",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_helpers.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 6138.932299,
+                            "relativeCreated": 6101.894634,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.0003185272216796875
+                            "time_consumption": 0.000152587890625
                         },
                         {
                             "args": [
                                 "'property_cache_json'"
                             ],
-                            "asctime": "2025-08-14 14:58:38,684",
-                            "created": 1755176318.6843255,
+                            "asctime": "2025-08-15 19:13:33,573",
+                            "created": 1755278013.5730522,
                             "exc_text": null,
                             "filename": "test_dump_cache.py",
                             "funcName": "dump_cache",
@@ -5855,8 +5855,8 @@
                             "moduleLogger": [
                                 {
                                     "args": [],
-                                    "asctime": "2025-08-14 14:58:38,682",
-                                    "created": 1755176318.6820495,
+                                    "asctime": "2025-08-15 19:13:33,571",
+                                    "created": 1755278013.571754,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_load_cache",
@@ -5865,24 +5865,24 @@
                                     "lineno": 237,
                                     "message": "Cache file does not exists (yet).",
                                     "module": "__init__",
-                                    "msecs": 682.0,
+                                    "msecs": 571.0,
                                     "msg": "Cache file does not exists (yet).",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 6139.237648,
+                                    "relativeCreated": 6102.054507,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "['str', 'unicode', 'integer', 'float', 'list', 'dict', 'none']"
                                     ],
-                                    "asctime": "2025-08-14 14:58:38,682",
-                                    "created": 1755176318.682298,
+                                    "asctime": "2025-08-15 19:13:33,571",
+                                    "created": 1755278013.5718613,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_load_source",
@@ -5891,24 +5891,24 @@
                                     "lineno": 246,
                                     "message": "Loading all data from source - ['str', 'unicode', 'integer', 'float', 'list', 'dict', 'none']",
                                     "module": "__init__",
-                                    "msecs": 682.0,
+                                    "msecs": 571.0,
                                     "msg": "Loading all data from source - %s",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 6139.485825,
+                                    "relativeCreated": 6102.161927,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json"
                                     ],
-                                    "asctime": "2025-08-14 14:58:38,684",
-                                    "created": 1755176318.6840131,
+                                    "asctime": "2025-08-15 19:13:33,572",
+                                    "created": 1755278013.5728893,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_save_only",
@@ -5917,39 +5917,39 @@
                                     "lineno": 301,
                                     "message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json)",
                                     "module": "__init__",
-                                    "msecs": 684.0,
+                                    "msecs": 572.0,
                                     "msg": "cache-file stored (%s)",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 6141.201105,
+                                    "relativeCreated": 6103.190036,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 684.0,
+                            "msecs": 573.0,
                             "msg": "Prepare: First usage of %s with a class holding the data to be cached",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_dump_cache.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 6141.513442,
+                            "relativeCreated": 6103.3528,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.0003123283386230469
+                            "time_consumption": 0.0001628398895263672
                         },
                         {
                             "args": [
                                 "'string'",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:38,686",
-                            "created": 1755176318.686122,
+                            "asctime": "2025-08-15 19:13:33,573",
+                            "created": 1755278013.5737438,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -5963,8 +5963,8 @@
                                     "args": [
                                         "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json"
                                     ],
-                                    "asctime": "2025-08-14 14:58:38,685",
-                                    "created": 1755176318.6850662,
+                                    "asctime": "2025-08-15 19:13:33,573",
+                                    "created": 1755278013.5733662,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_load_only",
@@ -5973,24 +5973,24 @@
                                     "lineno": 296,
                                     "message": "Loading properties from cache (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json)",
                                     "module": "__init__",
-                                    "msecs": 685.0,
+                                    "msecs": 573.0,
                                     "msg": "Loading properties from cache (%s)",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 6142.254256,
+                                    "relativeCreated": 6103.666828,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "str"
                                     ],
-                                    "asctime": "2025-08-14 14:58:38,685",
-                                    "created": 1755176318.6854544,
+                                    "asctime": "2025-08-15 19:13:33,573",
+                                    "created": 1755278013.5734925,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -5999,16 +5999,16 @@
                                     "lineno": 157,
                                     "message": "Providing property for 'str' from cache",
                                     "module": "__init__",
-                                    "msecs": 685.0,
+                                    "msecs": 573.0,
                                     "msg": "Providing property for '%s' from cache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 6142.642338,
+                                    "relativeCreated": 6103.793085,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -6017,8 +6017,8 @@
                                         "'string'",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:38,685",
-                                    "created": 1755176318.685692,
+                                    "asctime": "2025-08-15 19:13:33,573",
+                                    "created": 1755278013.573588,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -6027,16 +6027,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=str): 'string' ()",
                                     "module": "test",
-                                    "msecs": 685.0,
+                                    "msecs": 573.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 6142.880318,
+                                    "relativeCreated": 6103.888689,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -6046,8 +6046,8 @@
                                         "'string'",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:38,685",
-                                    "created": 1755176318.6859288,
+                                    "asctime": "2025-08-15 19:13:33,573",
+                                    "created": 1755278013.5736687,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -6056,39 +6056,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=str): result = 'string' ()",
                                     "module": "test",
-                                    "msecs": 685.0,
+                                    "msecs": 573.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 6143.116863,
+                                    "relativeCreated": 6103.969317,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 686.0,
+                            "msecs": 573.0,
                             "msg": "Data from cached instance with key=str is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 6143.309988,
+                            "relativeCreated": 6104.044471,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.00019311904907226562
+                            "time_consumption": 7.510185241699219e-05
                         },
                         {
                             "args": [
                                 "'unicode'",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:38,686",
-                            "created": 1755176318.686651,
+                            "asctime": "2025-08-15 19:13:33,574",
+                            "created": 1755278013.574114,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -6102,8 +6102,8 @@
                                     "args": [
                                         "unicode"
                                     ],
-                                    "asctime": "2025-08-14 14:58:38,686",
-                                    "created": 1755176318.6864054,
+                                    "asctime": "2025-08-15 19:13:33,573",
+                                    "created": 1755278013.573878,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -6112,16 +6112,16 @@
                                     "lineno": 157,
                                     "message": "Providing property for 'unicode' from cache",
                                     "module": "__init__",
-                                    "msecs": 686.0,
+                                    "msecs": 573.0,
                                     "msg": "Providing property for '%s' from cache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 6143.593534,
+                                    "relativeCreated": 6104.178499,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -6130,8 +6130,8 @@
                                         "'unicode'",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:38,686",
-                                    "created": 1755176318.6864984,
+                                    "asctime": "2025-08-15 19:13:33,573",
+                                    "created": 1755278013.573968,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -6140,16 +6140,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=unicode): 'unicode' ()",
                                     "module": "test",
-                                    "msecs": 686.0,
+                                    "msecs": 573.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 6143.686366,
+                                    "relativeCreated": 6104.268385,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -6159,8 +6159,8 @@
                                         "'unicode'",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:38,686",
-                                    "created": 1755176318.6865659,
+                                    "asctime": "2025-08-15 19:13:33,574",
+                                    "created": 1755278013.5740416,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -6169,39 +6169,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=unicode): result = 'unicode' ()",
                                     "module": "test",
-                                    "msecs": 686.0,
+                                    "msecs": 574.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 6143.754063,
+                                    "relativeCreated": 6104.342109,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 686.0,
+                            "msecs": 574.0,
                             "msg": "Data from cached instance with key=unicode is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 6143.838879,
+                            "relativeCreated": 6104.414769,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 8.511543273925781e-05
+                            "time_consumption": 7.2479248046875e-05
                         },
                         {
                             "args": [
                                 "17",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:38,686",
-                            "created": 1755176318.6869836,
+                            "asctime": "2025-08-15 19:13:33,574",
+                            "created": 1755278013.5744777,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -6215,8 +6215,8 @@
                                     "args": [
                                         "integer"
                                     ],
-                                    "asctime": "2025-08-14 14:58:38,686",
-                                    "created": 1755176318.6867685,
+                                    "asctime": "2025-08-15 19:13:33,574",
+                                    "created": 1755278013.5742383,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -6225,16 +6225,16 @@
                                     "lineno": 157,
                                     "message": "Providing property for 'integer' from cache",
                                     "module": "__init__",
-                                    "msecs": 686.0,
+                                    "msecs": 574.0,
                                     "msg": "Providing property for '%s' from cache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 6143.956695,
+                                    "relativeCreated": 6104.538793,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -6243,8 +6243,8 @@
                                         "17",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:38,686",
-                                    "created": 1755176318.6868546,
+                                    "asctime": "2025-08-15 19:13:33,574",
+                                    "created": 1755278013.5743256,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -6253,16 +6253,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=integer): 17 ()",
                                     "module": "test",
-                                    "msecs": 686.0,
+                                    "msecs": 574.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 6144.042723,
+                                    "relativeCreated": 6104.626005,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -6272,8 +6272,8 @@
                                         "17",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:38,686",
-                                    "created": 1755176318.6869202,
+                                    "asctime": "2025-08-15 19:13:33,574",
+                                    "created": 1755278013.5744038,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -6282,39 +6282,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=integer): result = 17 ()",
                                     "module": "test",
-                                    "msecs": 686.0,
+                                    "msecs": 574.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 6144.108276,
+                                    "relativeCreated": 6104.704461,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 686.0,
+                            "msecs": 574.0,
                             "msg": "Data from cached instance with key=integer is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 6144.171786,
+                            "relativeCreated": 6104.778118,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 6.341934204101562e-05
+                            "time_consumption": 7.390975952148438e-05
                         },
                         {
                             "args": [
                                 "3.14159",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:38,687",
-                            "created": 1755176318.687302,
+                            "asctime": "2025-08-15 19:13:33,574",
+                            "created": 1755278013.5748644,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -6328,8 +6328,8 @@
                                     "args": [
                                         "float"
                                     ],
-                                    "asctime": "2025-08-14 14:58:38,687",
-                                    "created": 1755176318.6870894,
+                                    "asctime": "2025-08-15 19:13:33,574",
+                                    "created": 1755278013.5746167,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -6338,16 +6338,16 @@
                                     "lineno": 157,
                                     "message": "Providing property for 'float' from cache",
                                     "module": "__init__",
-                                    "msecs": 687.0,
+                                    "msecs": 574.0,
                                     "msg": "Providing property for '%s' from cache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 6144.277596,
+                                    "relativeCreated": 6104.917098,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -6356,8 +6356,8 @@
                                         "3.14159",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:38,687",
-                                    "created": 1755176318.6871734,
+                                    "asctime": "2025-08-15 19:13:33,574",
+                                    "created": 1755278013.5747151,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -6366,16 +6366,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=float): 3.14159 ()",
                                     "module": "test",
-                                    "msecs": 687.0,
+                                    "msecs": 574.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 6144.361454,
+                                    "relativeCreated": 6105.015641,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -6385,8 +6385,8 @@
                                         "3.14159",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:38,687",
-                                    "created": 1755176318.6872394,
+                                    "asctime": "2025-08-15 19:13:33,574",
+                                    "created": 1755278013.574792,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -6395,39 +6395,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=float): result = 3.14159 ()",
                                     "module": "test",
-                                    "msecs": 687.0,
+                                    "msecs": 574.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 6144.427511,
+                                    "relativeCreated": 6105.092614,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 687.0,
+                            "msecs": 574.0,
                             "msg": "Data from cached instance with key=float is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 6144.490125,
+                            "relativeCreated": 6105.165103,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 6.270408630371094e-05
+                            "time_consumption": 7.2479248046875e-05
                         },
                         {
                             "args": [
                                 "[1, 'two', '3', 4]",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:38,687",
-                            "created": 1755176318.687728,
+                            "asctime": "2025-08-15 19:13:33,575",
+                            "created": 1755278013.5752733,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -6441,8 +6441,8 @@
                                     "args": [
                                         "list"
                                     ],
-                                    "asctime": "2025-08-14 14:58:38,687",
-                                    "created": 1755176318.6874278,
+                                    "asctime": "2025-08-15 19:13:33,574",
+                                    "created": 1755278013.574989,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -6451,16 +6451,16 @@
                                     "lineno": 157,
                                     "message": "Providing property for 'list' from cache",
                                     "module": "__init__",
-                                    "msecs": 687.0,
+                                    "msecs": 574.0,
                                     "msg": "Providing property for '%s' from cache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 6144.616023,
+                                    "relativeCreated": 6105.289684,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -6469,8 +6469,8 @@
                                         "[ 1, 'two', '3', 4 ]",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:38,687",
-                                    "created": 1755176318.687531,
+                                    "asctime": "2025-08-15 19:13:33,575",
+                                    "created": 1755278013.5750868,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -6479,16 +6479,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=list): [ 1, 'two', '3', 4 ] ()",
                                     "module": "test",
-                                    "msecs": 687.0,
+                                    "msecs": 575.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 6144.719118,
+                                    "relativeCreated": 6105.38757,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -6498,8 +6498,8 @@
                                         "[ 1, 'two', '3', 4 ]",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:38,687",
-                                    "created": 1755176318.6876245,
+                                    "asctime": "2025-08-15 19:13:33,575",
+                                    "created": 1755278013.575177,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -6508,39 +6508,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=list): result = [ 1, 'two', '3', 4 ] ()",
                                     "module": "test",
-                                    "msecs": 687.0,
+                                    "msecs": 575.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 6144.812516,
+                                    "relativeCreated": 6105.477636,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 687.0,
+                            "msecs": 575.0,
                             "msg": "Data from cached instance with key=list is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 6144.916091,
+                            "relativeCreated": 6105.573823,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.00010347366333007812
+                            "time_consumption": 9.632110595703125e-05
                         },
                         {
                             "args": [
                                 "{'1': 1, '2': 'two', '3': '3', '4': 4}",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:38,688",
-                            "created": 1755176318.6881487,
+                            "asctime": "2025-08-15 19:13:33,575",
+                            "created": 1755278013.5756817,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -6554,8 +6554,8 @@
                                     "args": [
                                         "dict"
                                     ],
-                                    "asctime": "2025-08-14 14:58:38,687",
-                                    "created": 1755176318.6878567,
+                                    "asctime": "2025-08-15 19:13:33,575",
+                                    "created": 1755278013.575399,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -6564,16 +6564,16 @@
                                     "lineno": 157,
                                     "message": "Providing property for 'dict' from cache",
                                     "module": "__init__",
-                                    "msecs": 687.0,
+                                    "msecs": 575.0,
                                     "msg": "Providing property for '%s' from cache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 6145.044729,
+                                    "relativeCreated": 6105.699422,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -6582,8 +6582,8 @@
                                         "{ '1': 1, '2': 'two', '3': '3', '4': 4 }",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:38,687",
-                                    "created": 1755176318.68796,
+                                    "asctime": "2025-08-15 19:13:33,575",
+                                    "created": 1755278013.5754979,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -6592,16 +6592,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=dict): { '1': 1, '2': 'two', '3': '3', '4': 4 } ()",
                                     "module": "test",
-                                    "msecs": 687.0,
+                                    "msecs": 575.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 6145.147937,
+                                    "relativeCreated": 6105.798694,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -6611,8 +6611,8 @@
                                         "{ '1': 1, '2': 'two', '3': '3', '4': 4 }",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:38,688",
-                                    "created": 1755176318.6880457,
+                                    "asctime": "2025-08-15 19:13:33,575",
+                                    "created": 1755278013.5755827,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -6621,39 +6621,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=dict): result = { '1': 1, '2': 'two', '3': '3', '4': 4 } ()",
                                     "module": "test",
-                                    "msecs": 688.0,
+                                    "msecs": 575.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 6145.233946,
+                                    "relativeCreated": 6105.883216,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 688.0,
+                            "msecs": 575.0,
                             "msg": "Data from cached instance with key=dict is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 6145.336785,
+                            "relativeCreated": 6105.982488,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.000102996826171875
+                            "time_consumption": 9.894371032714844e-05
                         },
                         {
                             "args": [
                                 "None",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:38,688",
-                            "created": 1755176318.6885614,
+                            "asctime": "2025-08-15 19:13:33,576",
+                            "created": 1755278013.5760808,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -6667,8 +6667,8 @@
                                     "args": [
                                         "none"
                                     ],
-                                    "asctime": "2025-08-14 14:58:38,688",
-                                    "created": 1755176318.688295,
+                                    "asctime": "2025-08-15 19:13:33,575",
+                                    "created": 1755278013.575828,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -6677,16 +6677,16 @@
                                     "lineno": 157,
                                     "message": "Providing property for 'none' from cache",
                                     "module": "__init__",
-                                    "msecs": 688.0,
+                                    "msecs": 575.0,
                                     "msg": "Providing property for '%s' from cache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 6145.482986,
+                                    "relativeCreated": 6106.12853,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -6695,8 +6695,8 @@
                                         "None",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:38,688",
-                                    "created": 1755176318.688395,
+                                    "asctime": "2025-08-15 19:13:33,575",
+                                    "created": 1755278013.5759206,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -6705,16 +6705,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=none): None ()",
                                     "module": "test",
-                                    "msecs": 688.0,
+                                    "msecs": 575.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 6145.583054,
+                                    "relativeCreated": 6106.22125,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -6724,8 +6724,8 @@
                                         "None",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:38,688",
-                                    "created": 1755176318.6884844,
+                                    "asctime": "2025-08-15 19:13:33,575",
+                                    "created": 1755278013.5759969,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -6734,39 +6734,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=none): result = None ()",
                                     "module": "test",
-                                    "msecs": 688.0,
+                                    "msecs": 575.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 6145.672499,
+                                    "relativeCreated": 6106.297521,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 688.0,
+                            "msecs": 576.0,
                             "msg": "Data from cached instance with key=none is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 6145.749523,
+                            "relativeCreated": 6106.381442,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 7.700920104980469e-05
+                            "time_consumption": 8.392333984375e-05
                         },
                         {
                             "args": [
                                 "'__string__'",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:40,691",
-                            "created": 1755176320.691619,
+                            "asctime": "2025-08-15 19:13:35,579",
+                            "created": 1755278015.5790389,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -6778,8 +6778,8 @@
                             "moduleLogger": [
                                 {
                                     "args": [],
-                                    "asctime": "2025-08-14 14:58:40,688",
-                                    "created": 1755176320.6889791,
+                                    "asctime": "2025-08-15 19:13:35,576",
+                                    "created": 1755278015.576648,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -6788,24 +6788,24 @@
                                     "lineno": 154,
                                     "message": "The cached value is old, cached value will be ignored",
                                     "module": "__init__",
-                                    "msecs": 688.0,
+                                    "msecs": 576.0,
                                     "msg": "The cached value is old, cached value will be ignored",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8146.167277,
+                                    "relativeCreated": 8106.948554,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "str"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,689",
-                                    "created": 1755176320.689246,
+                                    "asctime": "2025-08-15 19:13:35,576",
+                                    "created": 1755278015.5769112,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -6814,52 +6814,52 @@
                                     "lineno": 163,
                                     "message": "Loading property for key='str' from source instance",
                                     "module": "__init__",
-                                    "msecs": 689.0,
+                                    "msecs": 576.0,
                                     "msg": "Loading property for key='%s' from source instance",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8146.433937,
+                                    "relativeCreated": 8107.211635,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "str",
                                         "__string__",
-                                        1755176320
+                                        1755278015
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,689",
-                                    "created": 1755176320.6894248,
+                                    "asctime": "2025-08-15 19:13:35,577",
+                                    "created": 1755278015.5770895,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
                                     "levelname": "DEBUG",
                                     "levelno": 10,
                                     "lineno": 167,
-                                    "message": "Adding key=str, value=__string__ with timestamp=1755176320 to chache",
+                                    "message": "Adding key=str, value=__string__ with timestamp=1755278015 to chache",
                                     "module": "__init__",
-                                    "msecs": 689.0,
+                                    "msecs": 577.0,
                                     "msg": "Adding key=%s, value=%s with timestamp=%d to chache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8146.612697,
+                                    "relativeCreated": 8107.390044,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,690",
-                                    "created": 1755176320.6907468,
+                                    "asctime": "2025-08-15 19:13:35,578",
+                                    "created": 1755278015.5782278,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_save_only",
@@ -6868,16 +6868,16 @@
                                     "lineno": 301,
                                     "message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json)",
                                     "module": "__init__",
-                                    "msecs": 690.0,
+                                    "msecs": 578.0,
                                     "msg": "cache-file stored (%s)",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8147.934919,
+                                    "relativeCreated": 8108.52823,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -6886,8 +6886,8 @@
                                         "'__string__'",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,691",
-                                    "created": 1755176320.691274,
+                                    "asctime": "2025-08-15 19:13:35,578",
+                                    "created": 1755278015.578709,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -6896,16 +6896,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=str): '__string__' ()",
                                     "module": "test",
-                                    "msecs": 691.0,
+                                    "msecs": 578.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8148.461984,
+                                    "relativeCreated": 8109.009666,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -6915,8 +6915,8 @@
                                         "'__string__'",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,691",
-                                    "created": 1755176320.6914618,
+                                    "asctime": "2025-08-15 19:13:35,578",
+                                    "created": 1755278015.5788894,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -6925,39 +6925,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=str): result = '__string__' ()",
                                     "module": "test",
-                                    "msecs": 691.0,
+                                    "msecs": 578.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8148.649981,
+                                    "relativeCreated": 8109.190007,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 691.0,
+                            "msecs": 579.0,
                             "msg": "Data from cached instance with key=str is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 8148.806897,
+                            "relativeCreated": 8109.339645,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.0001571178436279297
+                            "time_consumption": 0.0001494884490966797
                         },
                         {
                             "args": [
                                 "'__unicode__'",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:40,693",
-                            "created": 1755176320.693916,
+                            "asctime": "2025-08-15 19:13:35,581",
+                            "created": 1755278015.5813293,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -6969,8 +6969,8 @@
                             "moduleLogger": [
                                 {
                                     "args": [],
-                                    "asctime": "2025-08-14 14:58:40,691",
-                                    "created": 1755176320.6919038,
+                                    "asctime": "2025-08-15 19:13:35,579",
+                                    "created": 1755278015.5793247,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -6979,24 +6979,24 @@
                                     "lineno": 154,
                                     "message": "The cached value is old, cached value will be ignored",
                                     "module": "__init__",
-                                    "msecs": 691.0,
+                                    "msecs": 579.0,
                                     "msg": "The cached value is old, cached value will be ignored",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8149.091913,
+                                    "relativeCreated": 8109.625402,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "unicode"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,692",
-                                    "created": 1755176320.6920881,
+                                    "asctime": "2025-08-15 19:13:35,579",
+                                    "created": 1755278015.5795116,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -7005,52 +7005,52 @@
                                     "lineno": 163,
                                     "message": "Loading property for key='unicode' from source instance",
                                     "module": "__init__",
-                                    "msecs": 692.0,
+                                    "msecs": 579.0,
                                     "msg": "Loading property for key='%s' from source instance",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8149.276033,
+                                    "relativeCreated": 8109.812074,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "unicode",
                                         "__unicode__",
-                                        1755176320
+                                        1755278015
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,692",
-                                    "created": 1755176320.692238,
+                                    "asctime": "2025-08-15 19:13:35,579",
+                                    "created": 1755278015.5796602,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
                                     "levelname": "DEBUG",
                                     "levelno": 10,
                                     "lineno": 167,
-                                    "message": "Adding key=unicode, value=__unicode__ with timestamp=1755176320 to chache",
+                                    "message": "Adding key=unicode, value=__unicode__ with timestamp=1755278015 to chache",
                                     "module": "__init__",
-                                    "msecs": 692.0,
+                                    "msecs": 579.0,
                                     "msg": "Adding key=%s, value=%s with timestamp=%d to chache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8149.426129,
+                                    "relativeCreated": 8109.960825,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,693",
-                                    "created": 1755176320.6932256,
+                                    "asctime": "2025-08-15 19:13:35,580",
+                                    "created": 1755278015.5806477,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_save_only",
@@ -7059,16 +7059,16 @@
                                     "lineno": 301,
                                     "message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json)",
                                     "module": "__init__",
-                                    "msecs": 693.0,
+                                    "msecs": 580.0,
                                     "msg": "cache-file stored (%s)",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8150.413902,
+                                    "relativeCreated": 8110.948326,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -7077,8 +7077,8 @@
                                         "'__unicode__'",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,693",
-                                    "created": 1755176320.693593,
+                                    "asctime": "2025-08-15 19:13:35,581",
+                                    "created": 1755278015.5810158,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -7087,16 +7087,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=unicode): '__unicode__' ()",
                                     "module": "test",
-                                    "msecs": 693.0,
+                                    "msecs": 581.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8150.781181,
+                                    "relativeCreated": 8111.316393,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -7106,8 +7106,8 @@
                                         "'__unicode__'",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,693",
-                                    "created": 1755176320.693769,
+                                    "asctime": "2025-08-15 19:13:35,581",
+                                    "created": 1755278015.5811868,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -7116,39 +7116,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=unicode): result = '__unicode__' ()",
                                     "module": "test",
-                                    "msecs": 693.0,
+                                    "msecs": 581.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8150.957058,
+                                    "relativeCreated": 8111.487496,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 693.0,
+                            "msecs": 581.0,
                             "msg": "Data from cached instance with key=unicode is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 8151.104144,
+                            "relativeCreated": 8111.629908,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.00014710426330566406
+                            "time_consumption": 0.00014257431030273438
                         },
                         {
                             "args": [
                                 "34",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:40,696",
-                            "created": 1755176320.696173,
+                            "asctime": "2025-08-15 19:13:35,583",
+                            "created": 1755278015.583567,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -7160,8 +7160,8 @@
                             "moduleLogger": [
                                 {
                                     "args": [],
-                                    "asctime": "2025-08-14 14:58:40,694",
-                                    "created": 1755176320.6941776,
+                                    "asctime": "2025-08-15 19:13:35,581",
+                                    "created": 1755278015.5815942,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -7170,24 +7170,24 @@
                                     "lineno": 154,
                                     "message": "The cached value is old, cached value will be ignored",
                                     "module": "__init__",
-                                    "msecs": 694.0,
+                                    "msecs": 581.0,
                                     "msg": "The cached value is old, cached value will be ignored",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8151.365748,
+                                    "relativeCreated": 8111.894668,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "integer"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,694",
-                                    "created": 1755176320.694356,
+                                    "asctime": "2025-08-15 19:13:35,581",
+                                    "created": 1755278015.5817366,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -7196,52 +7196,52 @@
                                     "lineno": 163,
                                     "message": "Loading property for key='integer' from source instance",
                                     "module": "__init__",
-                                    "msecs": 694.0,
+                                    "msecs": 581.0,
                                     "msg": "Loading property for key='%s' from source instance",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8151.544188,
+                                    "relativeCreated": 8112.037026,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "integer",
                                         34,
-                                        1755176320
+                                        1755278015
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,694",
-                                    "created": 1755176320.6945028,
+                                    "asctime": "2025-08-15 19:13:35,581",
+                                    "created": 1755278015.581876,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
                                     "levelname": "DEBUG",
                                     "levelno": 10,
                                     "lineno": 167,
-                                    "message": "Adding key=integer, value=34 with timestamp=1755176320 to chache",
+                                    "message": "Adding key=integer, value=34 with timestamp=1755278015 to chache",
                                     "module": "__init__",
-                                    "msecs": 694.0,
+                                    "msecs": 581.0,
                                     "msg": "Adding key=%s, value=%s with timestamp=%d to chache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8151.691043,
+                                    "relativeCreated": 8112.176614,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,695",
-                                    "created": 1755176320.6954901,
+                                    "asctime": "2025-08-15 19:13:35,582",
+                                    "created": 1755278015.5828655,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_save_only",
@@ -7250,16 +7250,16 @@
                                     "lineno": 301,
                                     "message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json)",
                                     "module": "__init__",
-                                    "msecs": 695.0,
+                                    "msecs": 582.0,
                                     "msg": "cache-file stored (%s)",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8152.678257,
+                                    "relativeCreated": 8113.16611,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -7268,8 +7268,8 @@
                                         "34",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,695",
-                                    "created": 1755176320.6958544,
+                                    "asctime": "2025-08-15 19:13:35,583",
+                                    "created": 1755278015.5832543,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -7278,16 +7278,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=integer): 34 ()",
                                     "module": "test",
-                                    "msecs": 695.0,
+                                    "msecs": 583.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8153.042428,
+                                    "relativeCreated": 8113.55484,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -7297,8 +7297,8 @@
                                         "34",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,696",
-                                    "created": 1755176320.6960282,
+                                    "asctime": "2025-08-15 19:13:35,583",
+                                    "created": 1755278015.5834255,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -7307,39 +7307,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=integer): result = 34 ()",
                                     "module": "test",
-                                    "msecs": 696.0,
+                                    "msecs": 583.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8153.216234,
+                                    "relativeCreated": 8113.726232,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 696.0,
+                            "msecs": 583.0,
                             "msg": "Data from cached instance with key=integer is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 8153.361104,
+                            "relativeCreated": 8113.867462,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.00014472007751464844
+                            "time_consumption": 0.00014138221740722656
                         },
                         {
                             "args": [
                                 "2.71828",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:40,698",
-                            "created": 1755176320.6983764,
+                            "asctime": "2025-08-15 19:13:35,585",
+                            "created": 1755278015.5851402,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -7351,8 +7351,8 @@
                             "moduleLogger": [
                                 {
                                     "args": [],
-                                    "asctime": "2025-08-14 14:58:40,696",
-                                    "created": 1755176320.696419,
+                                    "asctime": "2025-08-15 19:13:35,583",
+                                    "created": 1755278015.5838108,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -7361,24 +7361,24 @@
                                     "lineno": 154,
                                     "message": "The cached value is old, cached value will be ignored",
                                     "module": "__init__",
-                                    "msecs": 696.0,
+                                    "msecs": 583.0,
                                     "msg": "The cached value is old, cached value will be ignored",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8153.607286,
+                                    "relativeCreated": 8114.111349,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "float"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,696",
-                                    "created": 1755176320.6965618,
+                                    "asctime": "2025-08-15 19:13:35,583",
+                                    "created": 1755278015.583953,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -7387,52 +7387,52 @@
                                     "lineno": 163,
                                     "message": "Loading property for key='float' from source instance",
                                     "module": "__init__",
-                                    "msecs": 696.0,
+                                    "msecs": 583.0,
                                     "msg": "Loading property for key='%s' from source instance",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8153.749904,
+                                    "relativeCreated": 8114.253478,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "float",
                                         2.71828,
-                                        1755176320
+                                        1755278015
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,696",
-                                    "created": 1755176320.696707,
+                                    "asctime": "2025-08-15 19:13:35,584",
+                                    "created": 1755278015.5840976,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
                                     "levelname": "DEBUG",
                                     "levelno": 10,
                                     "lineno": 167,
-                                    "message": "Adding key=float, value=2.71828 with timestamp=1755176320 to chache",
+                                    "message": "Adding key=float, value=2.71828 with timestamp=1755278015 to chache",
                                     "module": "__init__",
-                                    "msecs": 696.0,
+                                    "msecs": 584.0,
                                     "msg": "Adding key=%s, value=%s with timestamp=%d to chache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8153.895114,
+                                    "relativeCreated": 8114.3982,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,697",
-                                    "created": 1755176320.697658,
+                                    "asctime": "2025-08-15 19:13:35,584",
+                                    "created": 1755278015.5848284,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_save_only",
@@ -7441,16 +7441,16 @@
                                     "lineno": 301,
                                     "message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json)",
                                     "module": "__init__",
-                                    "msecs": 697.0,
+                                    "msecs": 584.0,
                                     "msg": "cache-file stored (%s)",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8154.846333,
+                                    "relativeCreated": 8115.12914,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -7459,8 +7459,8 @@
                                         "2.71828",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,698",
-                                    "created": 1755176320.6980183,
+                                    "asctime": "2025-08-15 19:13:35,584",
+                                    "created": 1755278015.5849936,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -7469,16 +7469,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=float): 2.71828 ()",
                                     "module": "test",
-                                    "msecs": 698.0,
+                                    "msecs": 584.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8155.206514,
+                                    "relativeCreated": 8115.294077,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -7488,8 +7488,8 @@
                                         "2.71828",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,698",
-                                    "created": 1755176320.698191,
+                                    "asctime": "2025-08-15 19:13:35,585",
+                                    "created": 1755278015.5850728,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -7498,39 +7498,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=float): result = 2.71828 ()",
                                     "module": "test",
-                                    "msecs": 698.0,
+                                    "msecs": 585.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8155.379051,
+                                    "relativeCreated": 8115.373174,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 698.0,
+                            "msecs": 585.0,
                             "msg": "Data from cached instance with key=float is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 8155.564594,
+                            "relativeCreated": 8115.440705,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.00018548965454101562
+                            "time_consumption": 6.747245788574219e-05
                         },
                         {
                             "args": [
                                 "['one', 2, 3, '4']",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:40,700",
-                            "created": 1755176320.7006657,
+                            "asctime": "2025-08-15 19:13:35,586",
+                            "created": 1755278015.5861917,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -7542,8 +7542,8 @@
                             "moduleLogger": [
                                 {
                                     "args": [],
-                                    "asctime": "2025-08-14 14:58:40,698",
-                                    "created": 1755176320.6986237,
+                                    "asctime": "2025-08-15 19:13:35,585",
+                                    "created": 1755278015.585251,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -7552,24 +7552,24 @@
                                     "lineno": 154,
                                     "message": "The cached value is old, cached value will be ignored",
                                     "module": "__init__",
-                                    "msecs": 698.0,
+                                    "msecs": 585.0,
                                     "msg": "The cached value is old, cached value will be ignored",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8155.811795,
+                                    "relativeCreated": 8115.551624,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "list"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,698",
-                                    "created": 1755176320.6987658,
+                                    "asctime": "2025-08-15 19:13:35,585",
+                                    "created": 1755278015.5853148,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -7578,16 +7578,16 @@
                                     "lineno": 163,
                                     "message": "Loading property for key='list' from source instance",
                                     "module": "__init__",
-                                    "msecs": 698.0,
+                                    "msecs": 585.0,
                                     "msg": "Loading property for key='%s' from source instance",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8155.953969,
+                                    "relativeCreated": 8115.615549,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -7599,36 +7599,36 @@
                                             3,
                                             "4"
                                         ],
-                                        1755176320
+                                        1755278015
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,698",
-                                    "created": 1755176320.698909,
+                                    "asctime": "2025-08-15 19:13:35,585",
+                                    "created": 1755278015.5853791,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
                                     "levelname": "DEBUG",
                                     "levelno": 10,
                                     "lineno": 167,
-                                    "message": "Adding key=list, value=['one', 2, 3, '4'] with timestamp=1755176320 to chache",
+                                    "message": "Adding key=list, value=['one', 2, 3, '4'] with timestamp=1755278015 to chache",
                                     "module": "__init__",
-                                    "msecs": 698.0,
+                                    "msecs": 585.0,
                                     "msg": "Adding key=%s, value=%s with timestamp=%d to chache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8156.096944,
+                                    "relativeCreated": 8115.679768,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,699",
-                                    "created": 1755176320.699885,
+                                    "asctime": "2025-08-15 19:13:35,585",
+                                    "created": 1755278015.585832,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_save_only",
@@ -7637,16 +7637,16 @@
                                     "lineno": 301,
                                     "message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json)",
                                     "module": "__init__",
-                                    "msecs": 699.0,
+                                    "msecs": 585.0,
                                     "msg": "cache-file stored (%s)",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8157.072969,
+                                    "relativeCreated": 8116.132912,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -7655,8 +7655,8 @@
                                         "[ 'one', 2, 3, '4' ]",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,700",
-                                    "created": 1755176320.7002668,
+                                    "asctime": "2025-08-15 19:13:35,586",
+                                    "created": 1755278015.5860095,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -7665,16 +7665,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=list): [ 'one', 2, 3, '4' ] ()",
                                     "module": "test",
-                                    "msecs": 700.0,
+                                    "msecs": 586.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8157.45483,
+                                    "relativeCreated": 8116.310249,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -7684,8 +7684,8 @@
                                         "[ 'one', 2, 3, '4' ]",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,700",
-                                    "created": 1755176320.7004678,
+                                    "asctime": "2025-08-15 19:13:35,586",
+                                    "created": 1755278015.5861018,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -7694,39 +7694,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=list): result = [ 'one', 2, 3, '4' ] ()",
                                     "module": "test",
-                                    "msecs": 700.0,
+                                    "msecs": 586.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8157.655751,
+                                    "relativeCreated": 8116.402277,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 700.0,
+                            "msecs": 586.0,
                             "msg": "Data from cached instance with key=list is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 8157.853574,
+                            "relativeCreated": 8116.492126,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.00019788742065429688
+                            "time_consumption": 8.988380432128906e-05
                         },
                         {
                             "args": [
                                 "{'1': '1', '2': 2, '3': 'three', '4': '4'}",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:40,703",
-                            "created": 1755176320.7036002,
+                            "asctime": "2025-08-15 19:13:35,587",
+                            "created": 1755278015.587259,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -7738,8 +7738,8 @@
                             "moduleLogger": [
                                 {
                                     "args": [],
-                                    "asctime": "2025-08-14 14:58:40,700",
-                                    "created": 1755176320.700916,
+                                    "asctime": "2025-08-15 19:13:35,586",
+                                    "created": 1755278015.5863082,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -7748,24 +7748,24 @@
                                     "lineno": 154,
                                     "message": "The cached value is old, cached value will be ignored",
                                     "module": "__init__",
-                                    "msecs": 700.0,
+                                    "msecs": 586.0,
                                     "msg": "The cached value is old, cached value will be ignored",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8158.104073,
+                                    "relativeCreated": 8116.608837,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "dict"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,701",
-                                    "created": 1755176320.701062,
+                                    "asctime": "2025-08-15 19:13:35,586",
+                                    "created": 1755278015.5863752,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -7774,16 +7774,16 @@
                                     "lineno": 163,
                                     "message": "Loading property for key='dict' from source instance",
                                     "module": "__init__",
-                                    "msecs": 701.0,
+                                    "msecs": 586.0,
                                     "msg": "Loading property for key='%s' from source instance",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8158.249978,
+                                    "relativeCreated": 8116.675802,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -7795,36 +7795,36 @@
                                             "3": "three",
                                             "4": "4"
                                         },
-                                        1755176320
+                                        1755278015
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,701",
-                                    "created": 1755176320.7012055,
+                                    "asctime": "2025-08-15 19:13:35,586",
+                                    "created": 1755278015.58644,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
                                     "levelname": "DEBUG",
                                     "levelno": 10,
                                     "lineno": 167,
-                                    "message": "Adding key=dict, value={'1': '1', '2': 2, '3': 'three', '4': '4'} with timestamp=1755176320 to chache",
+                                    "message": "Adding key=dict, value={'1': '1', '2': 2, '3': 'three', '4': '4'} with timestamp=1755278015 to chache",
                                     "module": "__init__",
-                                    "msecs": 701.0,
+                                    "msecs": 586.0,
                                     "msg": "Adding key=%s, value=%s with timestamp=%d to chache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8158.393521,
+                                    "relativeCreated": 8116.740796,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,702",
-                                    "created": 1755176320.702352,
+                                    "asctime": "2025-08-15 19:13:35,586",
+                                    "created": 1755278015.586892,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_save_only",
@@ -7833,16 +7833,16 @@
                                     "lineno": 301,
                                     "message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json)",
                                     "module": "__init__",
-                                    "msecs": 702.0,
+                                    "msecs": 586.0,
                                     "msg": "cache-file stored (%s)",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8159.540139,
+                                    "relativeCreated": 8117.192273,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -7851,8 +7851,8 @@
                                         "{ '1': '1', '2': 2, '3': 'three', '4': '4' }",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,702",
-                                    "created": 1755176320.7029352,
+                                    "asctime": "2025-08-15 19:13:35,587",
+                                    "created": 1755278015.587077,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -7861,16 +7861,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=dict): { '1': '1', '2': 2, '3': 'three', '4': '4' } ()",
                                     "module": "test",
-                                    "msecs": 702.0,
+                                    "msecs": 587.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8160.123292,
+                                    "relativeCreated": 8117.377539,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -7880,8 +7880,8 @@
                                         "{ '1': '1', '2': 2, '3': 'three', '4': '4' }",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,703",
-                                    "created": 1755176320.7032442,
+                                    "asctime": "2025-08-15 19:13:35,587",
+                                    "created": 1755278015.5871673,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -7890,39 +7890,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=dict): result = { '1': '1', '2': 2, '3': 'three', '4': '4' } ()",
                                     "module": "test",
-                                    "msecs": 703.0,
+                                    "msecs": 587.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8160.432263,
+                                    "relativeCreated": 8117.467875,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 703.0,
+                            "msecs": 587.0,
                             "msg": "Data from cached instance with key=dict is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 8160.788284,
+                            "relativeCreated": 8117.559831,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.0003559589385986328
+                            "time_consumption": 9.179115295410156e-05
                         },
                         {
                             "args": [
                                 "'not None'",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:40,705",
-                            "created": 1755176320.7059448,
+                            "asctime": "2025-08-15 19:13:35,588",
+                            "created": 1755278015.5882623,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -7934,8 +7934,8 @@
                             "moduleLogger": [
                                 {
                                     "args": [],
-                                    "asctime": "2025-08-14 14:58:40,703",
-                                    "created": 1755176320.703948,
+                                    "asctime": "2025-08-15 19:13:35,587",
+                                    "created": 1755278015.587377,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -7944,24 +7944,24 @@
                                     "lineno": 154,
                                     "message": "The cached value is old, cached value will be ignored",
                                     "module": "__init__",
-                                    "msecs": 703.0,
+                                    "msecs": 587.0,
                                     "msg": "The cached value is old, cached value will be ignored",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8161.136129,
+                                    "relativeCreated": 8117.677645,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "none"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,704",
-                                    "created": 1755176320.7041025,
+                                    "asctime": "2025-08-15 19:13:35,587",
+                                    "created": 1755278015.5874438,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -7970,52 +7970,52 @@
                                     "lineno": 163,
                                     "message": "Loading property for key='none' from source instance",
                                     "module": "__init__",
-                                    "msecs": 704.0,
+                                    "msecs": 587.0,
                                     "msg": "Loading property for key='%s' from source instance",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8161.290615,
+                                    "relativeCreated": 8117.744249,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "none",
                                         "not None",
-                                        1755176320
+                                        1755278015
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,704",
-                                    "created": 1755176320.7042522,
+                                    "asctime": "2025-08-15 19:13:35,587",
+                                    "created": 1755278015.5875092,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
                                     "levelname": "DEBUG",
                                     "levelno": 10,
                                     "lineno": 167,
-                                    "message": "Adding key=none, value=not None with timestamp=1755176320 to chache",
+                                    "message": "Adding key=none, value=not None with timestamp=1755278015 to chache",
                                     "module": "__init__",
-                                    "msecs": 704.0,
+                                    "msecs": 587.0,
                                     "msg": "Adding key=%s, value=%s with timestamp=%d to chache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8161.44013,
+                                    "relativeCreated": 8117.809818,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,705",
-                                    "created": 1755176320.7052562,
+                                    "asctime": "2025-08-15 19:13:35,587",
+                                    "created": 1755278015.5879579,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_save_only",
@@ -8024,16 +8024,16 @@
                                     "lineno": 301,
                                     "message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json)",
                                     "module": "__init__",
-                                    "msecs": 705.0,
+                                    "msecs": 587.0,
                                     "msg": "cache-file stored (%s)",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8162.444236,
+                                    "relativeCreated": 8118.258333,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -8042,8 +8042,8 @@
                                         "'not None'",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,705",
-                                    "created": 1755176320.7056255,
+                                    "asctime": "2025-08-15 19:13:35,588",
+                                    "created": 1755278015.5881202,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -8052,16 +8052,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=none): 'not None' ()",
                                     "module": "test",
-                                    "msecs": 705.0,
+                                    "msecs": 588.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8162.813783,
+                                    "relativeCreated": 8118.420952,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -8071,8 +8071,8 @@
                                         "'not None'",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,705",
-                                    "created": 1755176320.7057998,
+                                    "asctime": "2025-08-15 19:13:35,588",
+                                    "created": 1755278015.5881977,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -8081,43 +8081,43 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=none): result = 'not None' ()",
                                     "module": "test",
-                                    "msecs": 705.0,
+                                    "msecs": 588.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8162.988107,
+                                    "relativeCreated": 8118.498341,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 705.0,
+                            "msecs": 588.0,
                             "msg": "Data from cached instance with key=none is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 8163.132814,
+                            "relativeCreated": 8118.562937,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.00014495849609375
+                            "time_consumption": 6.461143493652344e-05
                         }
                     ],
-                    "thread": 140229749231872,
+                    "thread": 140171799056640,
                     "threadName": "MainThread",
-                    "time_consumption": 2.024993658065796,
-                    "time_finished": "2025-08-14 14:58:40,705",
-                    "time_start": "2025-08-14 14:58:38,680"
+                    "time_consumption": 2.0170533657073975,
+                    "time_finished": "2025-08-15 19:13:35,588",
+                    "time_start": "2025-08-15 19:13:33,571"
                 },
                 "REQ-0007": {
                     "args": null,
-                    "asctime": "2025-08-14 14:58:40,706",
-                    "created": 1755176320.7065644,
+                    "asctime": "2025-08-15 19:13:35,588",
+                    "created": 1755278015.588547,
                     "exc_text": null,
                     "filename": "__init__.py",
                     "funcName": "testCase",
@@ -8127,20 +8127,20 @@
                     "message": "REQ-0007",
                     "module": "__init__",
                     "moduleLogger": [],
-                    "msecs": 706.0,
+                    "msecs": 588.0,
                     "msg": "REQ-0007",
                     "name": "__tLogger__",
                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/report/__init__.py",
-                    "process": 743412,
+                    "process": 1015645,
                     "processName": "MainProcess",
-                    "relativeCreated": 8163.75255,
+                    "relativeCreated": 8118.84767,
                     "stack_info": null,
                     "taskName": null,
                     "testcaseLogger": [
                         {
                             "args": [],
-                            "asctime": "2025-08-14 14:58:40,707",
-                            "created": 1755176320.707146,
+                            "asctime": "2025-08-15 19:13:35,588",
+                            "created": 1755278015.5888164,
                             "exc_text": null,
                             "filename": "test_helpers.py",
                             "funcName": "clean",
@@ -8152,8 +8152,8 @@
                             "moduleLogger": [
                                 {
                                     "args": [],
-                                    "asctime": "2025-08-14 14:58:40,706",
-                                    "created": 1755176320.7068841,
+                                    "asctime": "2025-08-15 19:13:35,588",
+                                    "created": 1755278015.5886943,
                                     "exc_text": null,
                                     "filename": "test_helpers.py",
                                     "funcName": "clean",
@@ -8162,38 +8162,38 @@
                                     "lineno": 17,
                                     "message": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
                                     "module": "test_helpers",
-                                    "msecs": 706.0,
+                                    "msecs": 588.0,
                                     "msg": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_helpers.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8164.072222,
+                                    "relativeCreated": 8118.994786,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 707.0,
+                            "msecs": 588.0,
                             "msg": "Prepare: Cleanup before testcase execution",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_helpers.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 8164.334173,
+                            "relativeCreated": 8119.117042,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.0002617835998535156
+                            "time_consumption": 0.0001220703125
                         },
                         {
                             "args": [
                                 "'property_cache_json'"
                             ],
-                            "asctime": "2025-08-14 14:58:40,709",
-                            "created": 1755176320.7096653,
+                            "asctime": "2025-08-15 19:13:35,590",
+                            "created": 1755278015.5900893,
                             "exc_text": null,
                             "filename": "test_dump_cache.py",
                             "funcName": "dump_cache",
@@ -8205,8 +8205,8 @@
                             "moduleLogger": [
                                 {
                                     "args": [],
-                                    "asctime": "2025-08-14 14:58:40,707",
-                                    "created": 1755176320.7075853,
+                                    "asctime": "2025-08-15 19:13:35,588",
+                                    "created": 1755278015.5889554,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_load_cache",
@@ -8215,24 +8215,24 @@
                                     "lineno": 237,
                                     "message": "Cache file does not exists (yet).",
                                     "module": "__init__",
-                                    "msecs": 707.0,
+                                    "msecs": 588.0,
                                     "msg": "Cache file does not exists (yet).",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8164.773249,
+                                    "relativeCreated": 8119.256049,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "['str', 'unicode', 'integer', 'float', 'list', 'dict', 'none']"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,707",
-                                    "created": 1755176320.7078028,
+                                    "asctime": "2025-08-15 19:13:35,589",
+                                    "created": 1755278015.5890493,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_load_source",
@@ -8241,24 +8241,24 @@
                                     "lineno": 246,
                                     "message": "Loading all data from source - ['str', 'unicode', 'integer', 'float', 'list', 'dict', 'none']",
                                     "module": "__init__",
-                                    "msecs": 707.0,
+                                    "msecs": 589.0,
                                     "msg": "Loading all data from source - %s",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8164.990996,
+                                    "relativeCreated": 8119.350017,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,709",
-                                    "created": 1755176320.7093732,
+                                    "asctime": "2025-08-15 19:13:35,589",
+                                    "created": 1755278015.5899591,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_save_only",
@@ -8267,39 +8267,39 @@
                                     "lineno": 301,
                                     "message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json)",
                                     "module": "__init__",
-                                    "msecs": 709.0,
+                                    "msecs": 589.0,
                                     "msg": "cache-file stored (%s)",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8166.561332,
+                                    "relativeCreated": 8120.259902,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 709.0,
+                            "msecs": 590.0,
                             "msg": "Prepare: First usage of %s with a class holding the data to be cached",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_dump_cache.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 8166.853445,
+                            "relativeCreated": 8120.389707,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.00029206275939941406
+                            "time_consumption": 0.00013017654418945312
                         },
                         {
                             "args": [
                                 "'__string__'",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:40,712",
-                            "created": 1755176320.7120447,
+                            "asctime": "2025-08-15 19:13:35,591",
+                            "created": 1755278015.591168,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -8313,8 +8313,8 @@
                                     "args": [
                                         "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,710",
-                                    "created": 1755176320.7102273,
+                                    "asctime": "2025-08-15 19:13:35,590",
+                                    "created": 1755278015.5903463,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_load_only",
@@ -8323,22 +8323,22 @@
                                     "lineno": 296,
                                     "message": "Loading properties from cache (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json)",
                                     "module": "__init__",
-                                    "msecs": 710.0,
+                                    "msecs": 590.0,
                                     "msg": "Loading properties from cache (%s)",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8167.415214,
+                                    "relativeCreated": 8120.646828,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [],
-                                    "asctime": "2025-08-14 14:58:40,710",
-                                    "created": 1755176320.71052,
+                                    "asctime": "2025-08-15 19:13:35,590",
+                                    "created": 1755278015.5904567,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_init_cache",
@@ -8347,24 +8347,24 @@
                                     "lineno": 213,
                                     "message": "Data version increased, ignoring previous cache data",
                                     "module": "__init__",
-                                    "msecs": 710.0,
+                                    "msecs": 590.0,
                                     "msg": "Data version increased, ignoring previous cache data",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8167.708146,
+                                    "relativeCreated": 8120.757416,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "str"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,710",
-                                    "created": 1755176320.7106922,
+                                    "asctime": "2025-08-15 19:13:35,590",
+                                    "created": 1755278015.5905366,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -8373,52 +8373,52 @@
                                     "lineno": 163,
                                     "message": "Loading property for key='str' from source instance",
                                     "module": "__init__",
-                                    "msecs": 710.0,
+                                    "msecs": 590.0,
                                     "msg": "Loading property for key='%s' from source instance",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8167.880117,
+                                    "relativeCreated": 8120.837287,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "str",
                                         "__string__",
-                                        1755176320
+                                        1755278015
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,710",
-                                    "created": 1755176320.7108452,
+                                    "asctime": "2025-08-15 19:13:35,590",
+                                    "created": 1755278015.590619,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
                                     "levelname": "DEBUG",
                                     "levelno": 10,
                                     "lineno": 167,
-                                    "message": "Adding key=str, value=__string__ with timestamp=1755176320 to chache",
+                                    "message": "Adding key=str, value=__string__ with timestamp=1755278015 to chache",
                                     "module": "__init__",
-                                    "msecs": 710.0,
+                                    "msecs": 590.0,
                                     "msg": "Adding key=%s, value=%s with timestamp=%d to chache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8168.033376,
+                                    "relativeCreated": 8120.919758,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,711",
-                                    "created": 1755176320.7113814,
+                                    "asctime": "2025-08-15 19:13:35,590",
+                                    "created": 1755278015.5908654,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_save_only",
@@ -8427,16 +8427,16 @@
                                     "lineno": 301,
                                     "message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json)",
                                     "module": "__init__",
-                                    "msecs": 711.0,
+                                    "msecs": 590.0,
                                     "msg": "cache-file stored (%s)",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8168.569577,
+                                    "relativeCreated": 8121.165963,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -8445,8 +8445,8 @@
                                         "'__string__'",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,711",
-                                    "created": 1755176320.7117345,
+                                    "asctime": "2025-08-15 19:13:35,591",
+                                    "created": 1755278015.5910244,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -8455,16 +8455,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=str): '__string__' ()",
                                     "module": "test",
-                                    "msecs": 711.0,
+                                    "msecs": 591.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8168.922521,
+                                    "relativeCreated": 8121.325008,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -8474,8 +8474,8 @@
                                         "'__string__'",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,711",
-                                    "created": 1755176320.711901,
+                                    "asctime": "2025-08-15 19:13:35,591",
+                                    "created": 1755278015.591102,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -8484,39 +8484,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=str): result = '__string__' ()",
                                     "module": "test",
-                                    "msecs": 711.0,
+                                    "msecs": 591.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8169.088898,
+                                    "relativeCreated": 8121.402635,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 712.0,
+                            "msecs": 591.0,
                             "msg": "Data from cached instance with key=str is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 8169.232883,
+                            "relativeCreated": 8121.468717,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.0001437664031982422
+                            "time_consumption": 6.604194641113281e-05
                         },
                         {
                             "args": [
                                 "'__unicode__'",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:40,714",
-                            "created": 1755176320.7143102,
+                            "asctime": "2025-08-15 19:13:35,591",
+                            "created": 1755278015.591927,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -8530,8 +8530,8 @@
                                     "args": [
                                         "unicode"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,712",
-                                    "created": 1755176320.7123423,
+                                    "asctime": "2025-08-15 19:13:35,591",
+                                    "created": 1755278015.5912812,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -8540,52 +8540,52 @@
                                     "lineno": 163,
                                     "message": "Loading property for key='unicode' from source instance",
                                     "module": "__init__",
-                                    "msecs": 712.0,
+                                    "msecs": 591.0,
                                     "msg": "Loading property for key='%s' from source instance",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8169.53049,
+                                    "relativeCreated": 8121.581756,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "unicode",
                                         "__unicode__",
-                                        1755176320
+                                        1755278015
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,712",
-                                    "created": 1755176320.712519,
+                                    "asctime": "2025-08-15 19:13:35,591",
+                                    "created": 1755278015.5913508,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
                                     "levelname": "DEBUG",
                                     "levelno": 10,
                                     "lineno": 167,
-                                    "message": "Adding key=unicode, value=__unicode__ with timestamp=1755176320 to chache",
+                                    "message": "Adding key=unicode, value=__unicode__ with timestamp=1755278015 to chache",
                                     "module": "__init__",
-                                    "msecs": 712.0,
+                                    "msecs": 591.0,
                                     "msg": "Adding key=%s, value=%s with timestamp=%d to chache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8169.707076,
+                                    "relativeCreated": 8121.651467,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,713",
-                                    "created": 1755176320.7132106,
+                                    "asctime": "2025-08-15 19:13:35,591",
+                                    "created": 1755278015.5916233,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_save_only",
@@ -8594,16 +8594,16 @@
                                     "lineno": 301,
                                     "message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json)",
                                     "module": "__init__",
-                                    "msecs": 713.0,
+                                    "msecs": 591.0,
                                     "msg": "cache-file stored (%s)",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8170.398775,
+                                    "relativeCreated": 8121.924022,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -8612,8 +8612,8 @@
                                         "'__unicode__'",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,713",
-                                    "created": 1755176320.7137227,
+                                    "asctime": "2025-08-15 19:13:35,591",
+                                    "created": 1755278015.5917788,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -8622,16 +8622,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=unicode): '__unicode__' ()",
                                     "module": "test",
-                                    "msecs": 713.0,
+                                    "msecs": 591.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8170.910648,
+                                    "relativeCreated": 8122.079319,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -8641,8 +8641,8 @@
                                         "'__unicode__'",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,714",
-                                    "created": 1755176320.714014,
+                                    "asctime": "2025-08-15 19:13:35,591",
+                                    "created": 1755278015.591861,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -8651,39 +8651,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=unicode): result = '__unicode__' ()",
                                     "module": "test",
-                                    "msecs": 714.0,
+                                    "msecs": 591.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8171.201953,
+                                    "relativeCreated": 8122.161716,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 714.0,
+                            "msecs": 591.0,
                             "msg": "Data from cached instance with key=unicode is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 8171.498279,
+                            "relativeCreated": 8122.227724,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.0002961158752441406
+                            "time_consumption": 6.604194641113281e-05
                         },
                         {
                             "args": [
                                 "34",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:40,717",
-                            "created": 1755176320.7171843,
+                            "asctime": "2025-08-15 19:13:35,592",
+                            "created": 1755278015.5926976,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -8697,8 +8697,8 @@
                                     "args": [
                                         "integer"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,714",
-                                    "created": 1755176320.714737,
+                                    "asctime": "2025-08-15 19:13:35,592",
+                                    "created": 1755278015.5920386,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -8707,52 +8707,52 @@
                                     "lineno": 163,
                                     "message": "Loading property for key='integer' from source instance",
                                     "module": "__init__",
-                                    "msecs": 714.0,
+                                    "msecs": 592.0,
                                     "msg": "Loading property for key='%s' from source instance",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8171.924926,
+                                    "relativeCreated": 8122.339315,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "integer",
                                         34,
-                                        1755176320
+                                        1755278015
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,715",
-                                    "created": 1755176320.7150033,
+                                    "asctime": "2025-08-15 19:13:35,592",
+                                    "created": 1755278015.592108,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
                                     "levelname": "DEBUG",
                                     "levelno": 10,
                                     "lineno": 167,
-                                    "message": "Adding key=integer, value=34 with timestamp=1755176320 to chache",
+                                    "message": "Adding key=integer, value=34 with timestamp=1755278015 to chache",
                                     "module": "__init__",
-                                    "msecs": 715.0,
+                                    "msecs": 592.0,
                                     "msg": "Adding key=%s, value=%s with timestamp=%d to chache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8172.191179,
+                                    "relativeCreated": 8122.408653,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,716",
-                                    "created": 1755176320.7161276,
+                                    "asctime": "2025-08-15 19:13:35,592",
+                                    "created": 1755278015.5924025,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_save_only",
@@ -8761,16 +8761,16 @@
                                     "lineno": 301,
                                     "message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json)",
                                     "module": "__init__",
-                                    "msecs": 716.0,
+                                    "msecs": 592.0,
                                     "msg": "cache-file stored (%s)",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8173.315799,
+                                    "relativeCreated": 8122.702951,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -8779,8 +8779,8 @@
                                         "34",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,716",
-                                    "created": 1755176320.7166648,
+                                    "asctime": "2025-08-15 19:13:35,592",
+                                    "created": 1755278015.592557,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -8789,16 +8789,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=integer): 34 ()",
                                     "module": "test",
-                                    "msecs": 716.0,
+                                    "msecs": 592.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8173.853041,
+                                    "relativeCreated": 8122.857711,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -8808,8 +8808,8 @@
                                         "34",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,716",
-                                    "created": 1755176320.7169383,
+                                    "asctime": "2025-08-15 19:13:35,592",
+                                    "created": 1755278015.5926328,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -8818,39 +8818,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=integer): result = 34 ()",
                                     "module": "test",
-                                    "msecs": 716.0,
+                                    "msecs": 592.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8174.126374,
+                                    "relativeCreated": 8122.933382,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 717.0,
+                            "msecs": 592.0,
                             "msg": "Data from cached instance with key=integer is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 8174.372232,
+                            "relativeCreated": 8122.998279,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.0002460479736328125
+                            "time_consumption": 6.4849853515625e-05
                         },
                         {
                             "args": [
                                 "2.71828",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:40,720",
-                            "created": 1755176320.7202158,
+                            "asctime": "2025-08-15 19:13:35,593",
+                            "created": 1755278015.593511,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -8864,8 +8864,8 @@
                                     "args": [
                                         "float"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,717",
-                                    "created": 1755176320.7176178,
+                                    "asctime": "2025-08-15 19:13:35,592",
+                                    "created": 1755278015.592817,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -8874,52 +8874,52 @@
                                     "lineno": 163,
                                     "message": "Loading property for key='float' from source instance",
                                     "module": "__init__",
-                                    "msecs": 717.0,
+                                    "msecs": 592.0,
                                     "msg": "Loading property for key='%s' from source instance",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8174.805831,
+                                    "relativeCreated": 8123.11779,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "float",
                                         2.71828,
-                                        1755176320
+                                        1755278015
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,717",
-                                    "created": 1755176320.7178955,
+                                    "asctime": "2025-08-15 19:13:35,592",
+                                    "created": 1755278015.5928888,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
                                     "levelname": "DEBUG",
                                     "levelno": 10,
                                     "lineno": 167,
-                                    "message": "Adding key=float, value=2.71828 with timestamp=1755176320 to chache",
+                                    "message": "Adding key=float, value=2.71828 with timestamp=1755278015 to chache",
                                     "module": "__init__",
-                                    "msecs": 717.0,
+                                    "msecs": 592.0,
                                     "msg": "Adding key=%s, value=%s with timestamp=%d to chache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8175.083546,
+                                    "relativeCreated": 8123.189447,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,719",
-                                    "created": 1755176320.7190948,
+                                    "asctime": "2025-08-15 19:13:35,593",
+                                    "created": 1755278015.593204,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_save_only",
@@ -8928,16 +8928,16 @@
                                     "lineno": 301,
                                     "message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json)",
                                     "module": "__init__",
-                                    "msecs": 719.0,
+                                    "msecs": 593.0,
                                     "msg": "cache-file stored (%s)",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8176.282762,
+                                    "relativeCreated": 8123.504579,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -8946,8 +8946,8 @@
                                         "2.71828",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,719",
-                                    "created": 1755176320.7196558,
+                                    "asctime": "2025-08-15 19:13:35,593",
+                                    "created": 1755278015.5933616,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -8956,16 +8956,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=float): 2.71828 ()",
                                     "module": "test",
-                                    "msecs": 719.0,
+                                    "msecs": 593.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8176.843778,
+                                    "relativeCreated": 8123.662256,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -8975,8 +8975,8 @@
                                         "2.71828",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,719",
-                                    "created": 1755176320.7199419,
+                                    "asctime": "2025-08-15 19:13:35,593",
+                                    "created": 1755278015.5934384,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -8985,39 +8985,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=float): result = 2.71828 ()",
                                     "module": "test",
-                                    "msecs": 719.0,
+                                    "msecs": 593.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8177.130066,
+                                    "relativeCreated": 8123.739153,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 720.0,
+                            "msecs": 593.0,
                             "msg": "Data from cached instance with key=float is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 8177.403777,
+                            "relativeCreated": 8123.811894,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.0002739429473876953
+                            "time_consumption": 7.271766662597656e-05
                         },
                         {
                             "args": [
                                 "['one', 2, 3, '4']",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:40,723",
-                            "created": 1755176320.723451,
+                            "asctime": "2025-08-15 19:13:35,594",
+                            "created": 1755278015.594387,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -9031,8 +9031,8 @@
                                     "args": [
                                         "list"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,720",
-                                    "created": 1755176320.7206295,
+                                    "asctime": "2025-08-15 19:13:35,593",
+                                    "created": 1755278015.5936282,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -9041,16 +9041,16 @@
                                     "lineno": 163,
                                     "message": "Loading property for key='list' from source instance",
                                     "module": "__init__",
-                                    "msecs": 720.0,
+                                    "msecs": 593.0,
                                     "msg": "Loading property for key='%s' from source instance",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8177.817561,
+                                    "relativeCreated": 8123.928838,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -9062,36 +9062,36 @@
                                             3,
                                             "4"
                                         ],
-                                        1755176320
+                                        1755278015
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,720",
-                                    "created": 1755176320.7208867,
+                                    "asctime": "2025-08-15 19:13:35,593",
+                                    "created": 1755278015.5936973,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
                                     "levelname": "DEBUG",
                                     "levelno": 10,
                                     "lineno": 167,
-                                    "message": "Adding key=list, value=['one', 2, 3, '4'] with timestamp=1755176320 to chache",
+                                    "message": "Adding key=list, value=['one', 2, 3, '4'] with timestamp=1755278015 to chache",
                                     "module": "__init__",
-                                    "msecs": 720.0,
+                                    "msecs": 593.0,
                                     "msg": "Adding key=%s, value=%s with timestamp=%d to chache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8178.074908,
+                                    "relativeCreated": 8123.997985,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,722",
-                                    "created": 1755176320.7221246,
+                                    "asctime": "2025-08-15 19:13:35,594",
+                                    "created": 1755278015.5940454,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_save_only",
@@ -9100,16 +9100,16 @@
                                     "lineno": 301,
                                     "message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json)",
                                     "module": "__init__",
-                                    "msecs": 722.0,
+                                    "msecs": 594.0,
                                     "msg": "cache-file stored (%s)",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8179.312604,
+                                    "relativeCreated": 8124.346119,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -9118,8 +9118,8 @@
                                         "[ 'one', 2, 3, '4' ]",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,722",
-                                    "created": 1755176320.7227633,
+                                    "asctime": "2025-08-15 19:13:35,594",
+                                    "created": 1755278015.5942123,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -9128,16 +9128,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=list): [ 'one', 2, 3, '4' ] ()",
                                     "module": "test",
-                                    "msecs": 722.0,
+                                    "msecs": 594.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8179.951369,
+                                    "relativeCreated": 8124.512913,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -9147,8 +9147,8 @@
                                         "[ 'one', 2, 3, '4' ]",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,723",
-                                    "created": 1755176320.7231002,
+                                    "asctime": "2025-08-15 19:13:35,594",
+                                    "created": 1755278015.5942962,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -9157,39 +9157,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=list): result = [ 'one', 2, 3, '4' ] ()",
                                     "module": "test",
-                                    "msecs": 723.0,
+                                    "msecs": 594.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8180.288176,
+                                    "relativeCreated": 8124.596966,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 723.0,
+                            "msecs": 594.0,
                             "msg": "Data from cached instance with key=list is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 8180.639094,
+                            "relativeCreated": 8124.687653,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.00035071372985839844
+                            "time_consumption": 9.083747863769531e-05
                         },
                         {
                             "args": [
                                 "{'1': '1', '2': 2, '3': 'three', '4': '4'}",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:40,727",
-                            "created": 1755176320.727165,
+                            "asctime": "2025-08-15 19:13:35,595",
+                            "created": 1755278015.5955355,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -9203,8 +9203,8 @@
                                     "args": [
                                         "dict"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,723",
-                                    "created": 1755176320.7238464,
+                                    "asctime": "2025-08-15 19:13:35,594",
+                                    "created": 1755278015.5945024,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -9213,16 +9213,16 @@
                                     "lineno": 163,
                                     "message": "Loading property for key='dict' from source instance",
                                     "module": "__init__",
-                                    "msecs": 723.0,
+                                    "msecs": 594.0,
                                     "msg": "Loading property for key='%s' from source instance",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8181.034546,
+                                    "relativeCreated": 8124.802984,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -9234,36 +9234,36 @@
                                             "3": "three",
                                             "4": "4"
                                         },
-                                        1755176320
+                                        1755278015
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,724",
-                                    "created": 1755176320.724063,
+                                    "asctime": "2025-08-15 19:13:35,594",
+                                    "created": 1755278015.594573,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
                                     "levelname": "DEBUG",
                                     "levelno": 10,
                                     "lineno": 167,
-                                    "message": "Adding key=dict, value={'1': '1', '2': 2, '3': 'three', '4': '4'} with timestamp=1755176320 to chache",
+                                    "message": "Adding key=dict, value={'1': '1', '2': 2, '3': 'three', '4': '4'} with timestamp=1755278015 to chache",
                                     "module": "__init__",
-                                    "msecs": 724.0,
+                                    "msecs": 594.0,
                                     "msg": "Adding key=%s, value=%s with timestamp=%d to chache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8181.25105,
+                                    "relativeCreated": 8124.873669,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,725",
-                                    "created": 1755176320.725731,
+                                    "asctime": "2025-08-15 19:13:35,595",
+                                    "created": 1755278015.595121,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_save_only",
@@ -9272,16 +9272,16 @@
                                     "lineno": 301,
                                     "message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json)",
                                     "module": "__init__",
-                                    "msecs": 725.0,
+                                    "msecs": 595.0,
                                     "msg": "cache-file stored (%s)",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8182.918957,
+                                    "relativeCreated": 8125.421471,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -9290,8 +9290,8 @@
                                         "{ '1': '1', '2': 2, '3': 'three', '4': '4' }",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,726",
-                                    "created": 1755176320.726725,
+                                    "asctime": "2025-08-15 19:13:35,595",
+                                    "created": 1755278015.595329,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -9300,16 +9300,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=dict): { '1': '1', '2': 2, '3': 'three', '4': '4' } ()",
                                     "module": "test",
-                                    "msecs": 726.0,
+                                    "msecs": 595.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8183.913197,
+                                    "relativeCreated": 8125.629596,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -9319,8 +9319,8 @@
                                         "{ '1': '1', '2': 2, '3': 'three', '4': '4' }",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,726",
-                                    "created": 1755176320.7269535,
+                                    "asctime": "2025-08-15 19:13:35,595",
+                                    "created": 1755278015.5954328,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -9329,39 +9329,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=dict): result = { '1': '1', '2': 2, '3': 'three', '4': '4' } ()",
                                     "module": "test",
-                                    "msecs": 726.0,
+                                    "msecs": 595.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8184.141472,
+                                    "relativeCreated": 8125.733315,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 727.0,
+                            "msecs": 595.0,
                             "msg": "Data from cached instance with key=dict is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 8184.352907,
+                            "relativeCreated": 8125.836339,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.00021147727966308594
+                            "time_consumption": 0.00010275840759277344
                         },
                         {
                             "args": [
                                 "'not None'",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:40,729",
-                            "created": 1755176320.7298691,
+                            "asctime": "2025-08-15 19:13:35,596",
+                            "created": 1755278015.5966353,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -9375,8 +9375,8 @@
                                     "args": [
                                         "none"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,727",
-                                    "created": 1755176320.7274642,
+                                    "asctime": "2025-08-15 19:13:35,595",
+                                    "created": 1755278015.5956705,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -9385,52 +9385,52 @@
                                     "lineno": 163,
                                     "message": "Loading property for key='none' from source instance",
                                     "module": "__init__",
-                                    "msecs": 727.0,
+                                    "msecs": 595.0,
                                     "msg": "Loading property for key='%s' from source instance",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8184.652298,
+                                    "relativeCreated": 8125.971218,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "none",
                                         "not None",
-                                        1755176320
+                                        1755278015
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,727",
-                                    "created": 1755176320.7276306,
+                                    "asctime": "2025-08-15 19:13:35,595",
+                                    "created": 1755278015.5957553,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
                                     "levelname": "DEBUG",
                                     "levelno": 10,
                                     "lineno": 167,
-                                    "message": "Adding key=none, value=not None with timestamp=1755176320 to chache",
+                                    "message": "Adding key=none, value=not None with timestamp=1755278015 to chache",
                                     "module": "__init__",
-                                    "msecs": 727.0,
+                                    "msecs": 595.0,
                                     "msg": "Adding key=%s, value=%s with timestamp=%d to chache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8184.818642,
+                                    "relativeCreated": 8126.05585,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,728",
-                                    "created": 1755176320.7288969,
+                                    "asctime": "2025-08-15 19:13:35,596",
+                                    "created": 1755278015.5962732,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_save_only",
@@ -9439,16 +9439,16 @@
                                     "lineno": 301,
                                     "message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json)",
                                     "module": "__init__",
-                                    "msecs": 728.0,
+                                    "msecs": 596.0,
                                     "msg": "cache-file stored (%s)",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8186.084912,
+                                    "relativeCreated": 8126.57371,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -9457,8 +9457,8 @@
                                         "'not None'",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,729",
-                                    "created": 1755176320.7294822,
+                                    "asctime": "2025-08-15 19:13:35,596",
+                                    "created": 1755278015.596466,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -9467,16 +9467,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=none): 'not None' ()",
                                     "module": "test",
-                                    "msecs": 729.0,
+                                    "msecs": 596.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8186.67028,
+                                    "relativeCreated": 8126.766761,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -9486,8 +9486,8 @@
                                         "'not None'",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,729",
-                                    "created": 1755176320.7296786,
+                                    "asctime": "2025-08-15 19:13:35,596",
+                                    "created": 1755278015.5965583,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -9496,43 +9496,43 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=none): result = 'not None' ()",
                                     "module": "test",
-                                    "msecs": 729.0,
+                                    "msecs": 596.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8186.866676,
+                                    "relativeCreated": 8126.858819,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 729.0,
+                            "msecs": 596.0,
                             "msg": "Data from cached instance with key=none is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 8187.057278,
+                            "relativeCreated": 8126.936065,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.00019049644470214844
+                            "time_consumption": 7.700920104980469e-05
                         }
                     ],
-                    "thread": 140229749231872,
+                    "thread": 140171799056640,
                     "threadName": "MainThread",
-                    "time_consumption": 0.02330470085144043,
-                    "time_finished": "2025-08-14 14:58:40,729",
-                    "time_start": "2025-08-14 14:58:40,706"
+                    "time_consumption": 0.008088350296020508,
+                    "time_finished": "2025-08-15 19:13:35,596",
+                    "time_start": "2025-08-15 19:13:35,588"
                 },
                 "REQ-0008": {
                     "args": null,
-                    "asctime": "2025-08-14 14:58:40,730",
-                    "created": 1755176320.7305152,
+                    "asctime": "2025-08-15 19:13:35,596",
+                    "created": 1755278015.596902,
                     "exc_text": null,
                     "filename": "__init__.py",
                     "funcName": "testCase",
@@ -9542,20 +9542,20 @@
                     "message": "REQ-0008",
                     "module": "__init__",
                     "moduleLogger": [],
-                    "msecs": 730.0,
+                    "msecs": 596.0,
                     "msg": "REQ-0008",
                     "name": "__tLogger__",
                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/report/__init__.py",
-                    "process": 743412,
+                    "process": 1015645,
                     "processName": "MainProcess",
-                    "relativeCreated": 8187.703186,
+                    "relativeCreated": 8127.202546,
                     "stack_info": null,
                     "taskName": null,
                     "testcaseLogger": [
                         {
                             "args": [],
-                            "asctime": "2025-08-14 14:58:40,731",
-                            "created": 1755176320.7311954,
+                            "asctime": "2025-08-15 19:13:35,597",
+                            "created": 1755278015.5972064,
                             "exc_text": null,
                             "filename": "test_helpers.py",
                             "funcName": "clean",
@@ -9567,8 +9567,8 @@
                             "moduleLogger": [
                                 {
                                     "args": [],
-                                    "asctime": "2025-08-14 14:58:40,730",
-                                    "created": 1755176320.7308826,
+                                    "asctime": "2025-08-15 19:13:35,597",
+                                    "created": 1755278015.5970721,
                                     "exc_text": null,
                                     "filename": "test_helpers.py",
                                     "funcName": "clean",
@@ -9577,38 +9577,38 @@
                                     "lineno": 17,
                                     "message": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
                                     "module": "test_helpers",
-                                    "msecs": 730.0,
+                                    "msecs": 597.0,
                                     "msg": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_helpers.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8188.070539,
+                                    "relativeCreated": 8127.372832,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 731.0,
+                            "msecs": 597.0,
                             "msg": "Prepare: Cleanup before testcase execution",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_helpers.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 8188.383372,
+                            "relativeCreated": 8127.506814,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.00031280517578125
+                            "time_consumption": 0.0001342296600341797
                         },
                         {
                             "args": [
                                 "'property_cache_json'"
                             ],
-                            "asctime": "2025-08-14 14:58:40,733",
-                            "created": 1755176320.7337363,
+                            "asctime": "2025-08-15 19:13:35,598",
+                            "created": 1755278015.598651,
                             "exc_text": null,
                             "filename": "test_dump_cache.py",
                             "funcName": "dump_cache",
@@ -9620,8 +9620,8 @@
                             "moduleLogger": [
                                 {
                                     "args": [],
-                                    "asctime": "2025-08-14 14:58:40,731",
-                                    "created": 1755176320.7315562,
+                                    "asctime": "2025-08-15 19:13:35,597",
+                                    "created": 1755278015.5973635,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_load_cache",
@@ -9630,24 +9630,24 @@
                                     "lineno": 237,
                                     "message": "Cache file does not exists (yet).",
                                     "module": "__init__",
-                                    "msecs": 731.0,
+                                    "msecs": 597.0,
                                     "msg": "Cache file does not exists (yet).",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8188.744071,
+                                    "relativeCreated": 8127.664189,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "['str', 'unicode', 'integer', 'float', 'list', 'dict', 'none']"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,731",
-                                    "created": 1755176320.7317772,
+                                    "asctime": "2025-08-15 19:13:35,597",
+                                    "created": 1755278015.5974698,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_load_source",
@@ -9656,24 +9656,24 @@
                                     "lineno": 246,
                                     "message": "Loading all data from source - ['str', 'unicode', 'integer', 'float', 'list', 'dict', 'none']",
                                     "module": "__init__",
-                                    "msecs": 731.0,
+                                    "msecs": 597.0,
                                     "msg": "Loading all data from source - %s",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8188.965428,
+                                    "relativeCreated": 8127.770264,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,733",
-                                    "created": 1755176320.7334287,
+                                    "asctime": "2025-08-15 19:13:35,598",
+                                    "created": 1755278015.5984824,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_save_only",
@@ -9682,39 +9682,39 @@
                                     "lineno": 301,
                                     "message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json)",
                                     "module": "__init__",
-                                    "msecs": 733.0,
+                                    "msecs": 598.0,
                                     "msg": "cache-file stored (%s)",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8190.616754,
+                                    "relativeCreated": 8128.783074,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 733.0,
+                            "msecs": 598.0,
                             "msg": "Prepare: First usage of %s with a class holding the data to be cached",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_dump_cache.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 8190.924385,
+                            "relativeCreated": 8128.951479,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.0003075599670410156
+                            "time_consumption": 0.0001685619354248047
                         },
                         {
                             "args": [
                                 "'__string__'",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:40,737",
-                            "created": 1755176320.737036,
+                            "asctime": "2025-08-15 19:13:35,599",
+                            "created": 1755278015.599887,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -9728,8 +9728,8 @@
                                     "args": [
                                         "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,734",
-                                    "created": 1755176320.734544,
+                                    "asctime": "2025-08-15 19:13:35,598",
+                                    "created": 1755278015.5989447,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_load_only",
@@ -9738,22 +9738,22 @@
                                     "lineno": 296,
                                     "message": "Loading properties from cache (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json)",
                                     "module": "__init__",
-                                    "msecs": 734.0,
+                                    "msecs": 598.0,
                                     "msg": "Loading properties from cache (%s)",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8191.732229,
+                                    "relativeCreated": 8129.245314,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [],
-                                    "asctime": "2025-08-14 14:58:40,734",
-                                    "created": 1755176320.7348828,
+                                    "asctime": "2025-08-15 19:13:35,599",
+                                    "created": 1755278015.599059,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_init_cache",
@@ -9762,24 +9762,24 @@
                                     "lineno": 211,
                                     "message": "Source uid changed, ignoring previous cache data",
                                     "module": "__init__",
-                                    "msecs": 734.0,
+                                    "msecs": 599.0,
                                     "msg": "Source uid changed, ignoring previous cache data",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8192.071025,
+                                    "relativeCreated": 8129.359757,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "str"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,735",
-                                    "created": 1755176320.735191,
+                                    "asctime": "2025-08-15 19:13:35,599",
+                                    "created": 1755278015.5991528,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -9788,52 +9788,52 @@
                                     "lineno": 163,
                                     "message": "Loading property for key='str' from source instance",
                                     "module": "__init__",
-                                    "msecs": 735.0,
+                                    "msecs": 599.0,
                                     "msg": "Loading property for key='%s' from source instance",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8192.379149,
+                                    "relativeCreated": 8129.453382,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "str",
                                         "__string__",
-                                        1755176320
+                                        1755278015
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,735",
-                                    "created": 1755176320.7354708,
+                                    "asctime": "2025-08-15 19:13:35,599",
+                                    "created": 1755278015.5992327,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
                                     "levelname": "DEBUG",
                                     "levelno": 10,
                                     "lineno": 167,
-                                    "message": "Adding key=str, value=__string__ with timestamp=1755176320 to chache",
+                                    "message": "Adding key=str, value=__string__ with timestamp=1755278015 to chache",
                                     "module": "__init__",
-                                    "msecs": 735.0,
+                                    "msecs": 599.0,
                                     "msg": "Adding key=%s, value=%s with timestamp=%d to chache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8192.658822,
+                                    "relativeCreated": 8129.533464,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,736",
-                                    "created": 1755176320.7361999,
+                                    "asctime": "2025-08-15 19:13:35,599",
+                                    "created": 1755278015.599518,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_save_only",
@@ -9842,16 +9842,16 @@
                                     "lineno": 301,
                                     "message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json)",
                                     "module": "__init__",
-                                    "msecs": 736.0,
+                                    "msecs": 599.0,
                                     "msg": "cache-file stored (%s)",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8193.38814,
+                                    "relativeCreated": 8129.818634,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -9860,8 +9860,8 @@
                                         "'__string__'",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,736",
-                                    "created": 1755176320.7366517,
+                                    "asctime": "2025-08-15 19:13:35,599",
+                                    "created": 1755278015.5997083,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -9870,16 +9870,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=str): '__string__' ()",
                                     "module": "test",
-                                    "msecs": 736.0,
+                                    "msecs": 599.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8193.839889,
+                                    "relativeCreated": 8130.008986,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -9889,8 +9889,8 @@
                                         "'__string__'",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,736",
-                                    "created": 1755176320.7368484,
+                                    "asctime": "2025-08-15 19:13:35,599",
+                                    "created": 1755278015.599808,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -9899,39 +9899,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=str): result = '__string__' ()",
                                     "module": "test",
-                                    "msecs": 736.0,
+                                    "msecs": 599.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8194.036488,
+                                    "relativeCreated": 8130.108498,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 737.0,
+                            "msecs": 599.0,
                             "msg": "Data from cached instance with key=str is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 8194.224133,
+                            "relativeCreated": 8130.187458,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.0001876354217529297
+                            "time_consumption": 7.891654968261719e-05
                         },
                         {
                             "args": [
                                 "'__unicode__'",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:40,739",
-                            "created": 1755176320.7395175,
+                            "asctime": "2025-08-15 19:13:35,600",
+                            "created": 1755278015.6007812,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -9945,8 +9945,8 @@
                                     "args": [
                                         "unicode"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,737",
-                                    "created": 1755176320.7374387,
+                                    "asctime": "2025-08-15 19:13:35,600",
+                                    "created": 1755278015.6000283,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -9955,52 +9955,52 @@
                                     "lineno": 163,
                                     "message": "Loading property for key='unicode' from source instance",
                                     "module": "__init__",
-                                    "msecs": 737.0,
+                                    "msecs": 600.0,
                                     "msg": "Loading property for key='%s' from source instance",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8194.626928,
+                                    "relativeCreated": 8130.328714,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "unicode",
                                         "__unicode__",
-                                        1755176320
+                                        1755278015
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,737",
-                                    "created": 1755176320.7377226,
+                                    "asctime": "2025-08-15 19:13:35,600",
+                                    "created": 1755278015.6001117,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
                                     "levelname": "DEBUG",
                                     "levelno": 10,
                                     "lineno": 167,
-                                    "message": "Adding key=unicode, value=__unicode__ with timestamp=1755176320 to chache",
+                                    "message": "Adding key=unicode, value=__unicode__ with timestamp=1755278015 to chache",
                                     "module": "__init__",
-                                    "msecs": 737.0,
+                                    "msecs": 600.0,
                                     "msg": "Adding key=%s, value=%s with timestamp=%d to chache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8194.910633,
+                                    "relativeCreated": 8130.412194,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,738",
-                                    "created": 1755176320.7387311,
+                                    "asctime": "2025-08-15 19:13:35,600",
+                                    "created": 1755278015.6004336,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_save_only",
@@ -10009,16 +10009,16 @@
                                     "lineno": 301,
                                     "message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json)",
                                     "module": "__init__",
-                                    "msecs": 738.0,
+                                    "msecs": 600.0,
                                     "msg": "cache-file stored (%s)",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8195.919374,
+                                    "relativeCreated": 8130.734241,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -10027,8 +10027,8 @@
                                         "'__unicode__'",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,739",
-                                    "created": 1755176320.7391913,
+                                    "asctime": "2025-08-15 19:13:35,600",
+                                    "created": 1755278015.600618,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -10037,16 +10037,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=unicode): '__unicode__' ()",
                                     "module": "test",
-                                    "msecs": 739.0,
+                                    "msecs": 600.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8196.37934,
+                                    "relativeCreated": 8130.918712,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -10056,8 +10056,8 @@
                                         "'__unicode__'",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,739",
-                                    "created": 1755176320.7393675,
+                                    "asctime": "2025-08-15 19:13:35,600",
+                                    "created": 1755278015.6007063,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -10066,39 +10066,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=unicode): result = '__unicode__' ()",
                                     "module": "test",
-                                    "msecs": 739.0,
+                                    "msecs": 600.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8196.555615,
+                                    "relativeCreated": 8131.006995,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 739.0,
+                            "msecs": 600.0,
                             "msg": "Data from cached instance with key=unicode is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 8196.705576,
+                            "relativeCreated": 8131.081986,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.0001499652862548828
+                            "time_consumption": 7.486343383789062e-05
                         },
                         {
                             "args": [
                                 "34",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:40,741",
-                            "created": 1755176320.7412462,
+                            "asctime": "2025-08-15 19:13:35,601",
+                            "created": 1755278015.6016915,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -10112,8 +10112,8 @@
                                     "args": [
                                         "integer"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,739",
-                                    "created": 1755176320.7397757,
+                                    "asctime": "2025-08-15 19:13:35,600",
+                                    "created": 1755278015.6009116,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -10122,52 +10122,52 @@
                                     "lineno": 163,
                                     "message": "Loading property for key='integer' from source instance",
                                     "module": "__init__",
-                                    "msecs": 739.0,
+                                    "msecs": 600.0,
                                     "msg": "Loading property for key='%s' from source instance",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8196.963831,
+                                    "relativeCreated": 8131.212099,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "integer",
                                         34,
-                                        1755176320
+                                        1755278015
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,739",
-                                    "created": 1755176320.7399316,
+                                    "asctime": "2025-08-15 19:13:35,600",
+                                    "created": 1755278015.600992,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
                                     "levelname": "DEBUG",
                                     "levelno": 10,
                                     "lineno": 167,
-                                    "message": "Adding key=integer, value=34 with timestamp=1755176320 to chache",
+                                    "message": "Adding key=integer, value=34 with timestamp=1755278015 to chache",
                                     "module": "__init__",
-                                    "msecs": 739.0,
+                                    "msecs": 600.0,
                                     "msg": "Adding key=%s, value=%s with timestamp=%d to chache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8197.119709,
+                                    "relativeCreated": 8131.29262,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,740",
-                                    "created": 1755176320.740564,
+                                    "asctime": "2025-08-15 19:13:35,601",
+                                    "created": 1755278015.6013315,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_save_only",
@@ -10176,16 +10176,16 @@
                                     "lineno": 301,
                                     "message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json)",
                                     "module": "__init__",
-                                    "msecs": 740.0,
+                                    "msecs": 601.0,
                                     "msg": "cache-file stored (%s)",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8197.752214,
+                                    "relativeCreated": 8131.63195,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -10194,8 +10194,8 @@
                                         "34",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,740",
-                                    "created": 1755176320.7409139,
+                                    "asctime": "2025-08-15 19:13:35,601",
+                                    "created": 1755278015.6015158,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -10204,16 +10204,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=integer): 34 ()",
                                     "module": "test",
-                                    "msecs": 740.0,
+                                    "msecs": 601.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8198.102021,
+                                    "relativeCreated": 8131.816306,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -10223,8 +10223,8 @@
                                         "34",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,741",
-                                    "created": 1755176320.741095,
+                                    "asctime": "2025-08-15 19:13:35,601",
+                                    "created": 1755278015.6016135,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -10233,39 +10233,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=integer): result = 34 ()",
                                     "module": "test",
-                                    "msecs": 741.0,
+                                    "msecs": 601.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8198.283366,
+                                    "relativeCreated": 8131.91421,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 741.0,
+                            "msecs": 601.0,
                             "msg": "Data from cached instance with key=integer is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 8198.434178,
+                            "relativeCreated": 8131.992085,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.00015115737915039062
+                            "time_consumption": 7.796287536621094e-05
                         },
                         {
                             "args": [
                                 "2.71828",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:40,744",
-                            "created": 1755176320.7442262,
+                            "asctime": "2025-08-15 19:13:35,602",
+                            "created": 1755278015.6026585,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -10279,8 +10279,8 @@
                                     "args": [
                                         "float"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,741",
-                                    "created": 1755176320.7416413,
+                                    "asctime": "2025-08-15 19:13:35,601",
+                                    "created": 1755278015.6018288,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -10289,52 +10289,52 @@
                                     "lineno": 163,
                                     "message": "Loading property for key='float' from source instance",
                                     "module": "__init__",
-                                    "msecs": 741.0,
+                                    "msecs": 601.0,
                                     "msg": "Loading property for key='%s' from source instance",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8198.829397,
+                                    "relativeCreated": 8132.129443,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "float",
                                         2.71828,
-                                        1755176320
+                                        1755278015
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,741",
-                                    "created": 1755176320.7419035,
+                                    "asctime": "2025-08-15 19:13:35,601",
+                                    "created": 1755278015.6019123,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
                                     "levelname": "DEBUG",
                                     "levelno": 10,
                                     "lineno": 167,
-                                    "message": "Adding key=float, value=2.71828 with timestamp=1755176320 to chache",
+                                    "message": "Adding key=float, value=2.71828 with timestamp=1755278015 to chache",
                                     "module": "__init__",
-                                    "msecs": 741.0,
+                                    "msecs": 601.0,
                                     "msg": "Adding key=%s, value=%s with timestamp=%d to chache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8199.091603,
+                                    "relativeCreated": 8132.21291,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,743",
-                                    "created": 1755176320.7431521,
+                                    "asctime": "2025-08-15 19:13:35,602",
+                                    "created": 1755278015.6022873,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_save_only",
@@ -10343,16 +10343,16 @@
                                     "lineno": 301,
                                     "message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json)",
                                     "module": "__init__",
-                                    "msecs": 743.0,
+                                    "msecs": 602.0,
                                     "msg": "cache-file stored (%s)",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8200.34031,
+                                    "relativeCreated": 8132.588075,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -10361,8 +10361,8 @@
                                         "2.71828",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,743",
-                                    "created": 1755176320.7436955,
+                                    "asctime": "2025-08-15 19:13:35,602",
+                                    "created": 1755278015.602475,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -10371,16 +10371,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=float): 2.71828 ()",
                                     "module": "test",
-                                    "msecs": 743.0,
+                                    "msecs": 602.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8200.883643,
+                                    "relativeCreated": 8132.77567,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -10390,8 +10390,8 @@
                                         "2.71828",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,743",
-                                    "created": 1755176320.7439737,
+                                    "asctime": "2025-08-15 19:13:35,602",
+                                    "created": 1755278015.6025662,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -10400,39 +10400,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=float): result = 2.71828 ()",
                                     "module": "test",
-                                    "msecs": 743.0,
+                                    "msecs": 602.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8201.161632,
+                                    "relativeCreated": 8132.866636,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 744.0,
+                            "msecs": 602.0,
                             "msg": "Data from cached instance with key=float is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 8201.414428,
+                            "relativeCreated": 8132.959215,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.0002524852752685547
+                            "time_consumption": 9.226799011230469e-05
                         },
                         {
                             "args": [
                                 "['one', 2, 3, '4']",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:40,747",
-                            "created": 1755176320.747847,
+                            "asctime": "2025-08-15 19:13:35,603",
+                            "created": 1755278015.6037242,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -10446,8 +10446,8 @@
                                     "args": [
                                         "list"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,744",
-                                    "created": 1755176320.7446473,
+                                    "asctime": "2025-08-15 19:13:35,602",
+                                    "created": 1755278015.6027908,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -10456,16 +10456,16 @@
                                     "lineno": 163,
                                     "message": "Loading property for key='list' from source instance",
                                     "module": "__init__",
-                                    "msecs": 744.0,
+                                    "msecs": 602.0,
                                     "msg": "Loading property for key='%s' from source instance",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8201.835356,
+                                    "relativeCreated": 8133.091417,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -10477,36 +10477,36 @@
                                             3,
                                             "4"
                                         ],
-                                        1755176320
+                                        1755278015
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,744",
-                                    "created": 1755176320.7449155,
+                                    "asctime": "2025-08-15 19:13:35,602",
+                                    "created": 1755278015.6028721,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
                                     "levelname": "DEBUG",
                                     "levelno": 10,
                                     "lineno": 167,
-                                    "message": "Adding key=list, value=['one', 2, 3, '4'] with timestamp=1755176320 to chache",
+                                    "message": "Adding key=list, value=['one', 2, 3, '4'] with timestamp=1755278015 to chache",
                                     "module": "__init__",
-                                    "msecs": 744.0,
+                                    "msecs": 602.0,
                                     "msg": "Adding key=%s, value=%s with timestamp=%d to chache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8202.103436,
+                                    "relativeCreated": 8133.172681,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,746",
-                                    "created": 1755176320.7464023,
+                                    "asctime": "2025-08-15 19:13:35,603",
+                                    "created": 1755278015.6032898,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_save_only",
@@ -10515,16 +10515,16 @@
                                     "lineno": 301,
                                     "message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json)",
                                     "module": "__init__",
-                                    "msecs": 746.0,
+                                    "msecs": 603.0,
                                     "msg": "cache-file stored (%s)",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8203.590433,
+                                    "relativeCreated": 8133.590558,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -10533,8 +10533,8 @@
                                         "[ 'one', 2, 3, '4' ]",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,747",
-                                    "created": 1755176320.747141,
+                                    "asctime": "2025-08-15 19:13:35,603",
+                                    "created": 1755278015.603502,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -10543,16 +10543,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=list): [ 'one', 2, 3, '4' ] ()",
                                     "module": "test",
-                                    "msecs": 747.0,
+                                    "msecs": 603.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8204.329041,
+                                    "relativeCreated": 8133.802701,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -10562,8 +10562,8 @@
                                         "[ 'one', 2, 3, '4' ]",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,747",
-                                    "created": 1755176320.7474895,
+                                    "asctime": "2025-08-15 19:13:35,603",
+                                    "created": 1755278015.6036031,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -10572,39 +10572,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=list): result = [ 'one', 2, 3, '4' ] ()",
                                     "module": "test",
-                                    "msecs": 747.0,
+                                    "msecs": 603.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8204.677683,
+                                    "relativeCreated": 8133.903813,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 747.0,
+                            "msecs": 603.0,
                             "msg": "Data from cached instance with key=list is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 8205.035377,
+                            "relativeCreated": 8134.024791,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.00035762786865234375
+                            "time_consumption": 0.00012111663818359375
                         },
                         {
                             "args": [
                                 "{'1': '1', '2': 2, '3': 'three', '4': '4'}",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:40,751",
-                            "created": 1755176320.751685,
+                            "asctime": "2025-08-15 19:13:35,605",
+                            "created": 1755278015.6051774,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -10618,8 +10618,8 @@
                                     "args": [
                                         "dict"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,748",
-                                    "created": 1755176320.7483134,
+                                    "asctime": "2025-08-15 19:13:35,603",
+                                    "created": 1755278015.6038935,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -10628,16 +10628,16 @@
                                     "lineno": 163,
                                     "message": "Loading property for key='dict' from source instance",
                                     "module": "__init__",
-                                    "msecs": 748.0,
+                                    "msecs": 603.0,
                                     "msg": "Loading property for key='%s' from source instance",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8205.501559,
+                                    "relativeCreated": 8134.194078,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -10649,36 +10649,36 @@
                                             "3": "three",
                                             "4": "4"
                                         },
-                                        1755176320
+                                        1755278015
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,748",
-                                    "created": 1755176320.7485757,
+                                    "asctime": "2025-08-15 19:13:35,603",
+                                    "created": 1755278015.6039991,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
                                     "levelname": "DEBUG",
                                     "levelno": 10,
                                     "lineno": 167,
-                                    "message": "Adding key=dict, value={'1': '1', '2': 2, '3': 'three', '4': '4'} with timestamp=1755176320 to chache",
+                                    "message": "Adding key=dict, value={'1': '1', '2': 2, '3': 'three', '4': '4'} with timestamp=1755278015 to chache",
                                     "module": "__init__",
-                                    "msecs": 748.0,
+                                    "msecs": 603.0,
                                     "msg": "Adding key=%s, value=%s with timestamp=%d to chache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8205.763718,
+                                    "relativeCreated": 8134.29971,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,750",
-                                    "created": 1755176320.7503047,
+                                    "asctime": "2025-08-15 19:13:35,604",
+                                    "created": 1755278015.6046493,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_save_only",
@@ -10687,16 +10687,16 @@
                                     "lineno": 301,
                                     "message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json)",
                                     "module": "__init__",
-                                    "msecs": 750.0,
+                                    "msecs": 604.0,
                                     "msg": "cache-file stored (%s)",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8207.492949,
+                                    "relativeCreated": 8134.949933,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -10705,8 +10705,8 @@
                                         "{ '1': '1', '2': 2, '3': 'three', '4': '4' }",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,751",
-                                    "created": 1755176320.7510064,
+                                    "asctime": "2025-08-15 19:13:35,604",
+                                    "created": 1755278015.6049116,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -10715,16 +10715,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=dict): { '1': '1', '2': 2, '3': 'three', '4': '4' } ()",
                                     "module": "test",
-                                    "msecs": 751.0,
+                                    "msecs": 604.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8208.194473,
+                                    "relativeCreated": 8135.212321,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -10734,8 +10734,8 @@
                                         "{ '1': '1', '2': 2, '3': 'three', '4': '4' }",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,751",
-                                    "created": 1755176320.751338,
+                                    "asctime": "2025-08-15 19:13:35,605",
+                                    "created": 1755278015.6050448,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -10744,39 +10744,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=dict): result = { '1': '1', '2': 2, '3': 'three', '4': '4' } ()",
                                     "module": "test",
-                                    "msecs": 751.0,
+                                    "msecs": 605.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8208.526142,
+                                    "relativeCreated": 8135.345317,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 751.0,
+                            "msecs": 605.0,
                             "msg": "Data from cached instance with key=dict is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 8208.872922,
+                            "relativeCreated": 8135.477958,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.00034689903259277344
+                            "time_consumption": 0.00013256072998046875
                         },
                         {
                             "args": [
                                 "'not None'",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:40,754",
-                            "created": 1755176320.7546787,
+                            "asctime": "2025-08-15 19:13:35,606",
+                            "created": 1755278015.6065676,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -10790,8 +10790,8 @@
                                     "args": [
                                         "none"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,752",
-                                    "created": 1755176320.75216,
+                                    "asctime": "2025-08-15 19:13:35,605",
+                                    "created": 1755278015.6053483,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -10800,52 +10800,52 @@
                                     "lineno": 163,
                                     "message": "Loading property for key='none' from source instance",
                                     "module": "__init__",
-                                    "msecs": 752.0,
+                                    "msecs": 605.0,
                                     "msg": "Loading property for key='%s' from source instance",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8209.348185,
+                                    "relativeCreated": 8135.648998,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "none",
                                         "not None",
-                                        1755176320
+                                        1755278015
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,752",
-                                    "created": 1755176320.7524679,
+                                    "asctime": "2025-08-15 19:13:35,605",
+                                    "created": 1755278015.605454,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
                                     "levelname": "DEBUG",
                                     "levelno": 10,
                                     "lineno": 167,
-                                    "message": "Adding key=none, value=not None with timestamp=1755176320 to chache",
+                                    "message": "Adding key=none, value=not None with timestamp=1755278015 to chache",
                                     "module": "__init__",
-                                    "msecs": 752.0,
+                                    "msecs": 605.0,
                                     "msg": "Adding key=%s, value=%s with timestamp=%d to chache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8209.656017,
+                                    "relativeCreated": 8135.754698,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,753",
-                                    "created": 1755176320.7536361,
+                                    "asctime": "2025-08-15 19:13:35,606",
+                                    "created": 1755278015.6061075,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_save_only",
@@ -10854,16 +10854,16 @@
                                     "lineno": 301,
                                     "message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json)",
                                     "module": "__init__",
-                                    "msecs": 753.0,
+                                    "msecs": 606.0,
                                     "msg": "cache-file stored (%s)",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8210.824097,
+                                    "relativeCreated": 8136.40804,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -10872,8 +10872,8 @@
                                         "'not None'",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,754",
-                                    "created": 1755176320.754088,
+                                    "asctime": "2025-08-15 19:13:35,606",
+                                    "created": 1755278015.606358,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -10882,16 +10882,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=none): 'not None' ()",
                                     "module": "test",
-                                    "msecs": 754.0,
+                                    "msecs": 606.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8211.276134,
+                                    "relativeCreated": 8136.658581,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -10901,8 +10901,8 @@
                                         "'not None'",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,754",
-                                    "created": 1755176320.7544017,
+                                    "asctime": "2025-08-15 19:13:35,606",
+                                    "created": 1755278015.6064715,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -10911,43 +10911,43 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=none): result = 'not None' ()",
                                     "module": "test",
-                                    "msecs": 754.0,
+                                    "msecs": 606.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8211.589976,
+                                    "relativeCreated": 8136.772116,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 754.0,
+                            "msecs": 606.0,
                             "msg": "Data from cached instance with key=none is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 8211.866879,
+                            "relativeCreated": 8136.868186,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.0002770423889160156
+                            "time_consumption": 9.608268737792969e-05
                         }
                     ],
-                    "thread": 140229749231872,
+                    "thread": 140171799056640,
                     "threadName": "MainThread",
-                    "time_consumption": 0.024163484573364258,
-                    "time_finished": "2025-08-14 14:58:40,754",
-                    "time_start": "2025-08-14 14:58:40,730"
+                    "time_consumption": 0.009665727615356445,
+                    "time_finished": "2025-08-15 19:13:35,606",
+                    "time_start": "2025-08-15 19:13:35,596"
                 },
                 "REQ-0009": {
                     "args": null,
-                    "asctime": "2025-08-14 14:58:40,755",
-                    "created": 1755176320.7556078,
+                    "asctime": "2025-08-15 19:13:35,606",
+                    "created": 1755278015.6069305,
                     "exc_text": null,
                     "filename": "__init__.py",
                     "funcName": "testCase",
@@ -10957,20 +10957,20 @@
                     "message": "REQ-0009",
                     "module": "__init__",
                     "moduleLogger": [],
-                    "msecs": 755.0,
+                    "msecs": 606.0,
                     "msg": "REQ-0009",
                     "name": "__tLogger__",
                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/report/__init__.py",
-                    "process": 743412,
+                    "process": 1015645,
                     "processName": "MainProcess",
-                    "relativeCreated": 8212.795967,
+                    "relativeCreated": 8137.231117,
                     "stack_info": null,
                     "taskName": null,
                     "testcaseLogger": [
                         {
                             "args": [],
-                            "asctime": "2025-08-14 14:58:40,756",
-                            "created": 1755176320.7565575,
+                            "asctime": "2025-08-15 19:13:35,607",
+                            "created": 1755278015.6072996,
                             "exc_text": null,
                             "filename": "test_helpers.py",
                             "funcName": "clean",
@@ -10982,8 +10982,8 @@
                             "moduleLogger": [
                                 {
                                     "args": [],
-                                    "asctime": "2025-08-14 14:58:40,756",
-                                    "created": 1755176320.756197,
+                                    "asctime": "2025-08-15 19:13:35,607",
+                                    "created": 1755278015.607134,
                                     "exc_text": null,
                                     "filename": "test_helpers.py",
                                     "funcName": "clean",
@@ -10992,38 +10992,38 @@
                                     "lineno": 17,
                                     "message": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
                                     "module": "test_helpers",
-                                    "msecs": 756.0,
+                                    "msecs": 607.0,
                                     "msg": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_helpers.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8213.384979,
+                                    "relativeCreated": 8137.434762,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 756.0,
+                            "msecs": 607.0,
                             "msg": "Prepare: Cleanup before testcase execution",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_helpers.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 8213.745591,
+                            "relativeCreated": 8137.600247,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.0003604888916015625
+                            "time_consumption": 0.00016546249389648438
                         },
                         {
                             "args": [
                                 "'property_cache_json'"
                             ],
-                            "asctime": "2025-08-14 14:58:40,760",
-                            "created": 1755176320.7609344,
+                            "asctime": "2025-08-15 19:13:35,609",
+                            "created": 1755278015.6097894,
                             "exc_text": null,
                             "filename": "test_dump_cache.py",
                             "funcName": "dump_cache",
@@ -11035,8 +11035,8 @@
                             "moduleLogger": [
                                 {
                                     "args": [],
-                                    "asctime": "2025-08-14 14:58:40,756",
-                                    "created": 1755176320.7568893,
+                                    "asctime": "2025-08-15 19:13:35,607",
+                                    "created": 1755278015.607494,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_load_cache",
@@ -11045,24 +11045,24 @@
                                     "lineno": 237,
                                     "message": "Cache file does not exists (yet).",
                                     "module": "__init__",
-                                    "msecs": 756.0,
+                                    "msecs": 607.0,
                                     "msg": "Cache file does not exists (yet).",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8214.07747,
+                                    "relativeCreated": 8137.794826,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "['str', 'unicode', 'integer', 'float', 'list', 'dict', 'none']"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,757",
-                                    "created": 1755176320.757109,
+                                    "asctime": "2025-08-15 19:13:35,607",
+                                    "created": 1755278015.6076288,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_load_source",
@@ -11071,24 +11071,24 @@
                                     "lineno": 246,
                                     "message": "Loading all data from source - ['str', 'unicode', 'integer', 'float', 'list', 'dict', 'none']",
                                     "module": "__init__",
-                                    "msecs": 757.0,
+                                    "msecs": 607.0,
                                     "msg": "Loading all data from source - %s",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8214.297025,
+                                    "relativeCreated": 8137.929313,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,760",
-                                    "created": 1755176320.7604992,
+                                    "asctime": "2025-08-15 19:13:35,609",
+                                    "created": 1755278015.6095867,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_save_only",
@@ -11097,39 +11097,39 @@
                                     "lineno": 301,
                                     "message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json)",
                                     "module": "__init__",
-                                    "msecs": 760.0,
+                                    "msecs": 609.0,
                                     "msg": "cache-file stored (%s)",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8217.687253,
+                                    "relativeCreated": 8139.887244,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 760.0,
+                            "msecs": 609.0,
                             "msg": "Prepare: First usage of %s with a class holding the data to be cached",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_dump_cache.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 8218.122409,
+                            "relativeCreated": 8140.08994,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.00043511390686035156
+                            "time_consumption": 0.00020265579223632812
                         },
                         {
                             "args": [
                                 "'__string__'",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:40,764",
-                            "created": 1755176320.764235,
+                            "asctime": "2025-08-15 19:13:35,611",
+                            "created": 1755278015.6113842,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -11143,8 +11143,8 @@
                                     "args": [
                                         "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,761",
-                                    "created": 1755176320.7616684,
+                                    "asctime": "2025-08-15 19:13:35,610",
+                                    "created": 1755278015.6101599,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_load_only",
@@ -11153,22 +11153,22 @@
                                     "lineno": 296,
                                     "message": "Loading properties from cache (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json)",
                                     "module": "__init__",
-                                    "msecs": 761.0,
+                                    "msecs": 610.0,
                                     "msg": "Loading properties from cache (%s)",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8218.856324,
+                                    "relativeCreated": 8140.460464,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [],
-                                    "asctime": "2025-08-14 14:58:40,762",
-                                    "created": 1755176320.7620537,
+                                    "asctime": "2025-08-15 19:13:35,610",
+                                    "created": 1755278015.6103094,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_init_cache",
@@ -11177,24 +11177,24 @@
                                     "lineno": 215,
                                     "message": "Storage version changed, ignoring previous cache data",
                                     "module": "__init__",
-                                    "msecs": 762.0,
+                                    "msecs": 610.0,
                                     "msg": "Storage version changed, ignoring previous cache data",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8219.241717,
+                                    "relativeCreated": 8140.609888,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "str"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,762",
-                                    "created": 1755176320.7624228,
+                                    "asctime": "2025-08-15 19:13:35,610",
+                                    "created": 1755278015.610425,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -11203,52 +11203,52 @@
                                     "lineno": 163,
                                     "message": "Loading property for key='str' from source instance",
                                     "module": "__init__",
-                                    "msecs": 762.0,
+                                    "msecs": 610.0,
                                     "msg": "Loading property for key='%s' from source instance",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8219.610902,
+                                    "relativeCreated": 8140.725625,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "str",
                                         "__string__",
-                                        1755176320
+                                        1755278015
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,762",
-                                    "created": 1755176320.7626133,
+                                    "asctime": "2025-08-15 19:13:35,610",
+                                    "created": 1755278015.6105258,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
                                     "levelname": "DEBUG",
                                     "levelno": 10,
                                     "lineno": 167,
-                                    "message": "Adding key=str, value=__string__ with timestamp=1755176320 to chache",
+                                    "message": "Adding key=str, value=__string__ with timestamp=1755278015 to chache",
                                     "module": "__init__",
-                                    "msecs": 762.0,
+                                    "msecs": 610.0,
                                     "msg": "Adding key=%s, value=%s with timestamp=%d to chache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8219.80124,
+                                    "relativeCreated": 8140.826471,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,763",
-                                    "created": 1755176320.7632394,
+                                    "asctime": "2025-08-15 19:13:35,610",
+                                    "created": 1755278015.6109216,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_save_only",
@@ -11257,16 +11257,16 @@
                                     "lineno": 301,
                                     "message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json)",
                                     "module": "__init__",
-                                    "msecs": 763.0,
+                                    "msecs": 610.0,
                                     "msg": "cache-file stored (%s)",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8220.427632,
+                                    "relativeCreated": 8141.222314,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -11275,8 +11275,8 @@
                                         "'__string__'",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,763",
-                                    "created": 1755176320.7637122,
+                                    "asctime": "2025-08-15 19:13:35,611",
+                                    "created": 1755278015.6111627,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -11285,16 +11285,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=str): '__string__' ()",
                                     "module": "test",
-                                    "msecs": 763.0,
+                                    "msecs": 611.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8220.900353,
+                                    "relativeCreated": 8141.463108,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -11304,8 +11304,8 @@
                                         "'__string__'",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,763",
-                                    "created": 1755176320.7639802,
+                                    "asctime": "2025-08-15 19:13:35,611",
+                                    "created": 1755278015.6112766,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -11314,39 +11314,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=str): result = '__string__' ()",
                                     "module": "test",
-                                    "msecs": 763.0,
+                                    "msecs": 611.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8221.168238,
+                                    "relativeCreated": 8141.577126,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 764.0,
+                            "msecs": 611.0,
                             "msg": "Data from cached instance with key=str is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 8221.422993,
+                            "relativeCreated": 8141.684698,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.0002548694610595703
+                            "time_consumption": 0.00010752677917480469
                         },
                         {
                             "args": [
                                 "'__unicode__'",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:40,766",
-                            "created": 1755176320.7668467,
+                            "asctime": "2025-08-15 19:13:35,612",
+                            "created": 1755278015.6124997,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -11360,8 +11360,8 @@
                                     "args": [
                                         "unicode"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,764",
-                                    "created": 1755176320.7646797,
+                                    "asctime": "2025-08-15 19:13:35,611",
+                                    "created": 1755278015.6115553,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -11370,52 +11370,52 @@
                                     "lineno": 163,
                                     "message": "Loading property for key='unicode' from source instance",
                                     "module": "__init__",
-                                    "msecs": 764.0,
+                                    "msecs": 611.0,
                                     "msg": "Loading property for key='%s' from source instance",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8221.867869,
+                                    "relativeCreated": 8141.85592,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "unicode",
                                         "__unicode__",
-                                        1755176320
+                                        1755278015
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,764",
-                                    "created": 1755176320.7649517,
+                                    "asctime": "2025-08-15 19:13:35,611",
+                                    "created": 1755278015.6116588,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
                                     "levelname": "DEBUG",
                                     "levelno": 10,
                                     "lineno": 167,
-                                    "message": "Adding key=unicode, value=__unicode__ with timestamp=1755176320 to chache",
+                                    "message": "Adding key=unicode, value=__unicode__ with timestamp=1755278015 to chache",
                                     "module": "__init__",
-                                    "msecs": 764.0,
+                                    "msecs": 611.0,
                                     "msg": "Adding key=%s, value=%s with timestamp=%d to chache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8222.139792,
+                                    "relativeCreated": 8141.959373,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,765",
-                                    "created": 1755176320.7657812,
+                                    "asctime": "2025-08-15 19:13:35,612",
+                                    "created": 1755278015.6120489,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_save_only",
@@ -11424,16 +11424,16 @@
                                     "lineno": 301,
                                     "message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json)",
                                     "module": "__init__",
-                                    "msecs": 765.0,
+                                    "msecs": 612.0,
                                     "msg": "cache-file stored (%s)",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8222.969447,
+                                    "relativeCreated": 8142.349597,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -11442,8 +11442,8 @@
                                         "'__unicode__'",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,766",
-                                    "created": 1755176320.7662978,
+                                    "asctime": "2025-08-15 19:13:35,612",
+                                    "created": 1755278015.6122913,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -11452,16 +11452,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=unicode): '__unicode__' ()",
                                     "module": "test",
-                                    "msecs": 766.0,
+                                    "msecs": 612.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8223.485976,
+                                    "relativeCreated": 8142.591857,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -11471,8 +11471,8 @@
                                         "'__unicode__'",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,766",
-                                    "created": 1755176320.7665782,
+                                    "asctime": "2025-08-15 19:13:35,612",
+                                    "created": 1755278015.612404,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -11481,39 +11481,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=unicode): result = '__unicode__' ()",
                                     "module": "test",
-                                    "msecs": 766.0,
+                                    "msecs": 612.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8223.766306,
+                                    "relativeCreated": 8142.704707,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 766.0,
+                            "msecs": 612.0,
                             "msg": "Data from cached instance with key=unicode is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 8224.03491,
+                            "relativeCreated": 8142.800312,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.0002684593200683594
+                            "time_consumption": 9.560585021972656e-05
                         },
                         {
                             "args": [
                                 "34",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:40,768",
-                            "created": 1755176320.7688394,
+                            "asctime": "2025-08-15 19:13:35,613",
+                            "created": 1755278015.6139703,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -11527,8 +11527,8 @@
                                     "args": [
                                         "integer"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,767",
-                                    "created": 1755176320.7671885,
+                                    "asctime": "2025-08-15 19:13:35,612",
+                                    "created": 1755278015.6126645,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -11537,52 +11537,52 @@
                                     "lineno": 163,
                                     "message": "Loading property for key='integer' from source instance",
                                     "module": "__init__",
-                                    "msecs": 767.0,
+                                    "msecs": 612.0,
                                     "msg": "Loading property for key='%s' from source instance",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8224.376682,
+                                    "relativeCreated": 8142.965197,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "integer",
                                         34,
-                                        1755176320
+                                        1755278015
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,767",
-                                    "created": 1755176320.767354,
+                                    "asctime": "2025-08-15 19:13:35,612",
+                                    "created": 1755278015.6128175,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
                                     "levelname": "DEBUG",
                                     "levelno": 10,
                                     "lineno": 167,
-                                    "message": "Adding key=integer, value=34 with timestamp=1755176320 to chache",
+                                    "message": "Adding key=integer, value=34 with timestamp=1755278015 to chache",
                                     "module": "__init__",
-                                    "msecs": 767.0,
+                                    "msecs": 612.0,
                                     "msg": "Adding key=%s, value=%s with timestamp=%d to chache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8224.542281,
+                                    "relativeCreated": 8143.117934,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,768",
-                                    "created": 1755176320.7680395,
+                                    "asctime": "2025-08-15 19:13:35,613",
+                                    "created": 1755278015.613376,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_save_only",
@@ -11591,16 +11591,16 @@
                                     "lineno": 301,
                                     "message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json)",
                                     "module": "__init__",
-                                    "msecs": 768.0,
+                                    "msecs": 613.0,
                                     "msg": "cache-file stored (%s)",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8225.227515,
+                                    "relativeCreated": 8143.676517,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -11609,8 +11609,8 @@
                                         "34",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,768",
-                                    "created": 1755176320.7684555,
+                                    "asctime": "2025-08-15 19:13:35,613",
+                                    "created": 1755278015.6136823,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -11619,16 +11619,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=integer): 34 ()",
                                     "module": "test",
-                                    "msecs": 768.0,
+                                    "msecs": 613.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8225.643461,
+                                    "relativeCreated": 8143.982667,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -11638,8 +11638,8 @@
                                         "34",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,768",
-                                    "created": 1755176320.7686427,
+                                    "asctime": "2025-08-15 19:13:35,613",
+                                    "created": 1755278015.6138422,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -11648,39 +11648,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=integer): result = 34 ()",
                                     "module": "test",
-                                    "msecs": 768.0,
+                                    "msecs": 613.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8225.830692,
+                                    "relativeCreated": 8144.142817,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 768.0,
+                            "msecs": 613.0,
                             "msg": "Data from cached instance with key=integer is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 8226.027461,
+                            "relativeCreated": 8144.270852,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.00019669532775878906
+                            "time_consumption": 0.00012803077697753906
                         },
                         {
                             "args": [
                                 "2.71828",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:40,771",
-                            "created": 1755176320.771261,
+                            "asctime": "2025-08-15 19:13:35,615",
+                            "created": 1755278015.6155434,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -11694,8 +11694,8 @@
                                     "args": [
                                         "float"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,769",
-                                    "created": 1755176320.769175,
+                                    "asctime": "2025-08-15 19:13:35,614",
+                                    "created": 1755278015.614187,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -11704,52 +11704,52 @@
                                     "lineno": 163,
                                     "message": "Loading property for key='float' from source instance",
                                     "module": "__init__",
-                                    "msecs": 769.0,
+                                    "msecs": 614.0,
                                     "msg": "Loading property for key='%s' from source instance",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8226.363251,
+                                    "relativeCreated": 8144.487563,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "float",
                                         2.71828,
-                                        1755176320
+                                        1755278015
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,769",
-                                    "created": 1755176320.7693324,
+                                    "asctime": "2025-08-15 19:13:35,614",
+                                    "created": 1755278015.614319,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
                                     "levelname": "DEBUG",
                                     "levelno": 10,
                                     "lineno": 167,
-                                    "message": "Adding key=float, value=2.71828 with timestamp=1755176320 to chache",
+                                    "message": "Adding key=float, value=2.71828 with timestamp=1755278015 to chache",
                                     "module": "__init__",
-                                    "msecs": 769.0,
+                                    "msecs": 614.0,
                                     "msg": "Adding key=%s, value=%s with timestamp=%d to chache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8226.520625,
+                                    "relativeCreated": 8144.619659,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,770",
-                                    "created": 1755176320.770063,
+                                    "asctime": "2025-08-15 19:13:35,614",
+                                    "created": 1755278015.6149504,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_save_only",
@@ -11758,16 +11758,16 @@
                                     "lineno": 301,
                                     "message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json)",
                                     "module": "__init__",
-                                    "msecs": 770.0,
+                                    "msecs": 614.0,
                                     "msg": "cache-file stored (%s)",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8227.251,
+                                    "relativeCreated": 8145.251075,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -11776,8 +11776,8 @@
                                         "2.71828",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,770",
-                                    "created": 1755176320.7706902,
+                                    "asctime": "2025-08-15 19:13:35,615",
+                                    "created": 1755278015.6152725,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -11786,16 +11786,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=float): 2.71828 ()",
                                     "module": "test",
-                                    "msecs": 770.0,
+                                    "msecs": 615.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8227.878477,
+                                    "relativeCreated": 8145.572982,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -11805,8 +11805,8 @@
                                         "2.71828",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,770",
-                                    "created": 1755176320.7709796,
+                                    "asctime": "2025-08-15 19:13:35,615",
+                                    "created": 1755278015.6154196,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -11815,39 +11815,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=float): result = 2.71828 ()",
                                     "module": "test",
-                                    "msecs": 770.0,
+                                    "msecs": 615.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8228.16775,
+                                    "relativeCreated": 8145.720338,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 771.0,
+                            "msecs": 615.0,
                             "msg": "Data from cached instance with key=float is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 8228.448906,
+                            "relativeCreated": 8145.84384,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.00028133392333984375
+                            "time_consumption": 0.00012373924255371094
                         },
                         {
                             "args": [
                                 "['one', 2, 3, '4']",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:40,773",
-                            "created": 1755176320.7736897,
+                            "asctime": "2025-08-15 19:13:35,617",
+                            "created": 1755278015.6172035,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -11861,8 +11861,8 @@
                                     "args": [
                                         "list"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,771",
-                                    "created": 1755176320.7717144,
+                                    "asctime": "2025-08-15 19:13:35,615",
+                                    "created": 1755278015.6157572,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -11871,16 +11871,16 @@
                                     "lineno": 163,
                                     "message": "Loading property for key='list' from source instance",
                                     "module": "__init__",
-                                    "msecs": 771.0,
+                                    "msecs": 615.0,
                                     "msg": "Loading property for key='%s' from source instance",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8228.902569,
+                                    "relativeCreated": 8146.057903,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -11892,36 +11892,36 @@
                                             3,
                                             "4"
                                         ],
-                                        1755176320
+                                        1755278015
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,771",
-                                    "created": 1755176320.7719374,
+                                    "asctime": "2025-08-15 19:13:35,615",
+                                    "created": 1755278015.6158905,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
                                     "levelname": "DEBUG",
                                     "levelno": 10,
                                     "lineno": 167,
-                                    "message": "Adding key=list, value=['one', 2, 3, '4'] with timestamp=1755176320 to chache",
+                                    "message": "Adding key=list, value=['one', 2, 3, '4'] with timestamp=1755278015 to chache",
                                     "module": "__init__",
-                                    "msecs": 771.0,
+                                    "msecs": 615.0,
                                     "msg": "Adding key=%s, value=%s with timestamp=%d to chache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8229.125478,
+                                    "relativeCreated": 8146.19115,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,772",
-                                    "created": 1755176320.7728224,
+                                    "asctime": "2025-08-15 19:13:35,616",
+                                    "created": 1755278015.616552,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_save_only",
@@ -11930,16 +11930,16 @@
                                     "lineno": 301,
                                     "message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json)",
                                     "module": "__init__",
-                                    "msecs": 772.0,
+                                    "msecs": 616.0,
                                     "msg": "cache-file stored (%s)",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8230.010457,
+                                    "relativeCreated": 8146.852745,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -11948,8 +11948,8 @@
                                         "[ 'one', 2, 3, '4' ]",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,773",
-                                    "created": 1755176320.773304,
+                                    "asctime": "2025-08-15 19:13:35,616",
+                                    "created": 1755278015.6168804,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -11958,16 +11958,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=list): [ 'one', 2, 3, '4' ] ()",
                                     "module": "test",
-                                    "msecs": 773.0,
+                                    "msecs": 616.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8230.49206,
+                                    "relativeCreated": 8147.181041,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -11977,8 +11977,8 @@
                                         "[ 'one', 2, 3, '4' ]",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,773",
-                                    "created": 1755176320.7734954,
+                                    "asctime": "2025-08-15 19:13:35,617",
+                                    "created": 1755278015.6170409,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -11987,39 +11987,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=list): result = [ 'one', 2, 3, '4' ] ()",
                                     "module": "test",
-                                    "msecs": 773.0,
+                                    "msecs": 617.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8230.68371,
+                                    "relativeCreated": 8147.341508,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 773.0,
+                            "msecs": 617.0,
                             "msg": "Data from cached instance with key=list is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 8230.878014,
+                            "relativeCreated": 8147.503975,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.00019431114196777344
+                            "time_consumption": 0.00016260147094726562
                         },
                         {
                             "args": [
                                 "{'1': '1', '2': 2, '3': 'three', '4': '4'}",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:40,776",
-                            "created": 1755176320.7763226,
+                            "asctime": "2025-08-15 19:13:35,619",
+                            "created": 1755278015.619132,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -12033,8 +12033,8 @@
                                     "args": [
                                         "dict"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,773",
-                                    "created": 1755176320.7739594,
+                                    "asctime": "2025-08-15 19:13:35,617",
+                                    "created": 1755278015.6174223,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -12043,16 +12043,16 @@
                                     "lineno": 163,
                                     "message": "Loading property for key='dict' from source instance",
                                     "module": "__init__",
-                                    "msecs": 773.0,
+                                    "msecs": 617.0,
                                     "msg": "Loading property for key='%s' from source instance",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8231.147542,
+                                    "relativeCreated": 8147.722818,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -12064,36 +12064,36 @@
                                             "3": "three",
                                             "4": "4"
                                         },
-                                        1755176320
+                                        1755278015
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,774",
-                                    "created": 1755176320.7741165,
+                                    "asctime": "2025-08-15 19:13:35,617",
+                                    "created": 1755278015.6175582,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
                                     "levelname": "DEBUG",
                                     "levelno": 10,
                                     "lineno": 167,
-                                    "message": "Adding key=dict, value={'1': '1', '2': 2, '3': 'three', '4': '4'} with timestamp=1755176320 to chache",
+                                    "message": "Adding key=dict, value={'1': '1', '2': 2, '3': 'three', '4': '4'} with timestamp=1755278015 to chache",
                                     "module": "__init__",
-                                    "msecs": 774.0,
+                                    "msecs": 617.0,
                                     "msg": "Adding key=%s, value=%s with timestamp=%d to chache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8231.304828,
+                                    "relativeCreated": 8147.858831,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,775",
-                                    "created": 1755176320.7753515,
+                                    "asctime": "2025-08-15 19:13:35,618",
+                                    "created": 1755278015.6184094,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_save_only",
@@ -12102,16 +12102,16 @@
                                     "lineno": 301,
                                     "message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json)",
                                     "module": "__init__",
-                                    "msecs": 775.0,
+                                    "msecs": 618.0,
                                     "msg": "cache-file stored (%s)",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8232.53968,
+                                    "relativeCreated": 8148.710086,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -12120,8 +12120,8 @@
                                         "{ '1': '1', '2': 2, '3': 'three', '4': '4' }",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,775",
-                                    "created": 1755176320.7759054,
+                                    "asctime": "2025-08-15 19:13:35,618",
+                                    "created": 1755278015.6187928,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -12130,16 +12130,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=dict): { '1': '1', '2': 2, '3': 'three', '4': '4' } ()",
                                     "module": "test",
-                                    "msecs": 775.0,
+                                    "msecs": 618.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8233.09328,
+                                    "relativeCreated": 8149.093337,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -12149,8 +12149,8 @@
                                         "{ '1': '1', '2': 2, '3': 'three', '4': '4' }",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,776",
-                                    "created": 1755176320.7761147,
+                                    "asctime": "2025-08-15 19:13:35,618",
+                                    "created": 1755278015.6189618,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -12159,39 +12159,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=dict): result = { '1': '1', '2': 2, '3': 'three', '4': '4' } ()",
                                     "module": "test",
-                                    "msecs": 776.0,
+                                    "msecs": 618.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8233.302902,
+                                    "relativeCreated": 8149.262469,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 776.0,
+                            "msecs": 619.0,
                             "msg": "Data from cached instance with key=dict is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 8233.510554,
+                            "relativeCreated": 8149.432728,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.0002079010009765625
+                            "time_consumption": 0.00017023086547851562
                         },
                         {
                             "args": [
                                 "'not None'",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:40,778",
-                            "created": 1755176320.7788556,
+                            "asctime": "2025-08-15 19:13:35,620",
+                            "created": 1755278015.6209614,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -12205,8 +12205,8 @@
                                     "args": [
                                         "none"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,776",
-                                    "created": 1755176320.7766824,
+                                    "asctime": "2025-08-15 19:13:35,619",
+                                    "created": 1755278015.619365,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -12215,52 +12215,52 @@
                                     "lineno": 163,
                                     "message": "Loading property for key='none' from source instance",
                                     "module": "__init__",
-                                    "msecs": 776.0,
+                                    "msecs": 619.0,
                                     "msg": "Loading property for key='%s' from source instance",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8233.870641,
+                                    "relativeCreated": 8149.665563,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "none",
                                         "not None",
-                                        1755176320
+                                        1755278015
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,776",
-                                    "created": 1755176320.7769055,
+                                    "asctime": "2025-08-15 19:13:35,619",
+                                    "created": 1755278015.6195047,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
                                     "levelname": "DEBUG",
                                     "levelno": 10,
                                     "lineno": 167,
-                                    "message": "Adding key=none, value=not None with timestamp=1755176320 to chache",
+                                    "message": "Adding key=none, value=not None with timestamp=1755278015 to chache",
                                     "module": "__init__",
-                                    "msecs": 776.0,
+                                    "msecs": 619.0,
                                     "msg": "Adding key=%s, value=%s with timestamp=%d to chache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8234.093554,
+                                    "relativeCreated": 8149.805224,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,778",
-                                    "created": 1755176320.7780237,
+                                    "asctime": "2025-08-15 19:13:35,620",
+                                    "created": 1755278015.6203704,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_save_only",
@@ -12269,16 +12269,16 @@
                                     "lineno": 301,
                                     "message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json)",
                                     "module": "__init__",
-                                    "msecs": 778.0,
+                                    "msecs": 620.0,
                                     "msg": "cache-file stored (%s)",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8235.211672,
+                                    "relativeCreated": 8150.671026,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -12287,8 +12287,8 @@
                                         "'not None'",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,778",
-                                    "created": 1755176320.778517,
+                                    "asctime": "2025-08-15 19:13:35,620",
+                                    "created": 1755278015.6206894,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -12297,16 +12297,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=none): 'not None' ()",
                                     "module": "test",
-                                    "msecs": 778.0,
+                                    "msecs": 620.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8235.704999,
+                                    "relativeCreated": 8150.990025,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -12316,8 +12316,8 @@
                                         "'not None'",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,778",
-                                    "created": 1755176320.7787032,
+                                    "asctime": "2025-08-15 19:13:35,620",
+                                    "created": 1755278015.6208372,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -12326,43 +12326,43 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=none): result = 'not None' ()",
                                     "module": "test",
-                                    "msecs": 778.0,
+                                    "msecs": 620.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8235.891092,
+                                    "relativeCreated": 8151.137634,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 778.0,
+                            "msecs": 620.0,
                             "msg": "Data from cached instance with key=none is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 8236.043711,
+                            "relativeCreated": 8151.26207,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.00015234947204589844
+                            "time_consumption": 0.00012421607971191406
                         }
                     ],
-                    "thread": 140229749231872,
+                    "thread": 140171799056640,
                     "threadName": "MainThread",
-                    "time_consumption": 0.023247718811035156,
-                    "time_finished": "2025-08-14 14:58:40,778",
-                    "time_start": "2025-08-14 14:58:40,755"
+                    "time_consumption": 0.014030933380126953,
+                    "time_finished": "2025-08-15 19:13:35,620",
+                    "time_start": "2025-08-15 19:13:35,606"
                 },
                 "REQ-0010": {
                     "args": null,
-                    "asctime": "2025-08-14 14:58:40,791",
-                    "created": 1755176320.7917676,
+                    "asctime": "2025-08-15 19:13:35,626",
+                    "created": 1755278015.6262481,
                     "exc_text": null,
                     "filename": "__init__.py",
                     "funcName": "testCase",
@@ -12372,20 +12372,20 @@
                     "message": "REQ-0010",
                     "module": "__init__",
                     "moduleLogger": [],
-                    "msecs": 791.0,
+                    "msecs": 626.0,
                     "msg": "REQ-0010",
                     "name": "__tLogger__",
                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/report/__init__.py",
-                    "process": 743412,
+                    "process": 1015645,
                     "processName": "MainProcess",
-                    "relativeCreated": 8248.955672,
+                    "relativeCreated": 8156.548899,
                     "stack_info": null,
                     "taskName": null,
                     "testcaseLogger": [
                         {
                             "args": [],
-                            "asctime": "2025-08-14 14:58:40,792",
-                            "created": 1755176320.792643,
+                            "asctime": "2025-08-15 19:13:35,626",
+                            "created": 1755278015.626507,
                             "exc_text": null,
                             "filename": "test_helpers.py",
                             "funcName": "clean",
@@ -12397,8 +12397,8 @@
                             "moduleLogger": [
                                 {
                                     "args": [],
-                                    "asctime": "2025-08-14 14:58:40,792",
-                                    "created": 1755176320.792291,
+                                    "asctime": "2025-08-15 19:13:35,626",
+                                    "created": 1755278015.6264067,
                                     "exc_text": null,
                                     "filename": "test_helpers.py",
                                     "funcName": "clean",
@@ -12407,38 +12407,38 @@
                                     "lineno": 17,
                                     "message": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
                                     "module": "test_helpers",
-                                    "msecs": 792.0,
+                                    "msecs": 626.0,
                                     "msg": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_helpers.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8249.478964,
+                                    "relativeCreated": 8156.707253,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 792.0,
+                            "msecs": 626.0,
                             "msg": "Prepare: Cleanup before testcase execution",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_helpers.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 8249.831074,
+                            "relativeCreated": 8156.807722,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.0003521442413330078
+                            "time_consumption": 0.00010037422180175781
                         },
                         {
                             "args": [
                                 "'property_cache_json'"
                             ],
-                            "asctime": "2025-08-14 14:58:40,796",
-                            "created": 1755176320.796273,
+                            "asctime": "2025-08-15 19:13:35,628",
+                            "created": 1755278015.6281931,
                             "exc_text": null,
                             "filename": "test_source_key_definition.py",
                             "funcName": "source_key_definition",
@@ -12450,8 +12450,8 @@
                             "moduleLogger": [
                                 {
                                     "args": [],
-                                    "asctime": "2025-08-14 14:58:40,792",
-                                    "created": 1755176320.7929869,
+                                    "asctime": "2025-08-15 19:13:35,626",
+                                    "created": 1755278015.6266422,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_load_cache",
@@ -12460,24 +12460,24 @@
                                     "lineno": 237,
                                     "message": "Cache file does not exists (yet).",
                                     "module": "__init__",
-                                    "msecs": 792.0,
+                                    "msecs": 626.0,
                                     "msg": "Cache file does not exists (yet).",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8250.174917,
+                                    "relativeCreated": 8156.94281,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "['str', 'unicode', 'integer', 'float', 'list', 'dict', 'none']"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,793",
-                                    "created": 1755176320.7932484,
+                                    "asctime": "2025-08-15 19:13:35,626",
+                                    "created": 1755278015.6267188,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_load_source",
@@ -12486,24 +12486,24 @@
                                     "lineno": 246,
                                     "message": "Loading all data from source - ['str', 'unicode', 'integer', 'float', 'list', 'dict', 'none']",
                                     "module": "__init__",
-                                    "msecs": 793.0,
+                                    "msecs": 626.0,
                                     "msg": "Loading all data from source - %s",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8250.436701,
+                                    "relativeCreated": 8157.019383,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "['str', 'unicode', 'integer', 'float', 'list', 'dict', 'none']"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,794",
-                                    "created": 1755176320.7941594,
+                                    "asctime": "2025-08-15 19:13:35,627",
+                                    "created": 1755278015.627218,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_load_source",
@@ -12512,24 +12512,24 @@
                                     "lineno": 246,
                                     "message": "Loading all data from source - ['str', 'unicode', 'integer', 'float', 'list', 'dict', 'none']",
                                     "module": "__init__",
-                                    "msecs": 794.0,
+                                    "msecs": 627.0,
                                     "msg": "Loading all data from source - %s",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8251.347477,
+                                    "relativeCreated": 8157.518414,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_source_key_def.json"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,795",
-                                    "created": 1755176320.7959127,
+                                    "asctime": "2025-08-15 19:13:35,628",
+                                    "created": 1755278015.628084,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_save_only",
@@ -12538,39 +12538,39 @@
                                     "lineno": 301,
                                     "message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_source_key_def.json)",
                                     "module": "__init__",
-                                    "msecs": 795.0,
+                                    "msecs": 628.0,
                                     "msg": "cache-file stored (%s)",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8253.100876,
+                                    "relativeCreated": 8158.3845,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 796.0,
+                            "msecs": 628.0,
                             "msg": "Prepare: First usage of %s with a class holding the data to be cached",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_source_key_definition.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 8253.461106,
+                            "relativeCreated": 8158.493542,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.00036025047302246094
+                            "time_consumption": 0.00010919570922851562
                         },
                         {
                             "args": [
                                 "'__string__'",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:40,799",
-                            "created": 1755176320.7998998,
+                            "asctime": "2025-08-15 19:13:35,629",
+                            "created": 1755278015.6292527,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -12584,8 +12584,8 @@
                                     "args": [
                                         "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_source_key_def.json"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,796",
-                                    "created": 1755176320.7969563,
+                                    "asctime": "2025-08-15 19:13:35,628",
+                                    "created": 1755278015.628408,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_load_only",
@@ -12594,24 +12594,24 @@
                                     "lineno": 296,
                                     "message": "Loading properties from cache (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_source_key_def.json)",
                                     "module": "__init__",
-                                    "msecs": 796.0,
+                                    "msecs": 628.0,
                                     "msg": "Loading properties from cache (%s)",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8254.144609,
+                                    "relativeCreated": 8158.708697,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "str"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,797",
-                                    "created": 1755176320.7972772,
+                                    "asctime": "2025-08-15 19:13:35,628",
+                                    "created": 1755278015.6285026,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -12620,52 +12620,52 @@
                                     "lineno": 163,
                                     "message": "Loading property for key='str' from source instance",
                                     "module": "__init__",
-                                    "msecs": 797.0,
+                                    "msecs": 628.0,
                                     "msg": "Loading property for key='%s' from source instance",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8254.465389,
+                                    "relativeCreated": 8158.803041,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "str",
                                         "__string__",
-                                        1755176320
+                                        1755278015
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,797",
-                                    "created": 1755176320.797443,
+                                    "asctime": "2025-08-15 19:13:35,628",
+                                    "created": 1755278015.6285627,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
                                     "levelname": "DEBUG",
                                     "levelno": 10,
                                     "lineno": 167,
-                                    "message": "Adding key=str, value=__string__ with timestamp=1755176320 to chache",
+                                    "message": "Adding key=str, value=__string__ with timestamp=1755278015 to chache",
                                     "module": "__init__",
-                                    "msecs": 797.0,
+                                    "msecs": 628.0,
                                     "msg": "Adding key=%s, value=%s with timestamp=%d to chache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8254.63087,
+                                    "relativeCreated": 8158.863304,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_source_key_def.json"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,798",
-                                    "created": 1755176320.7986681,
+                                    "asctime": "2025-08-15 19:13:35,628",
+                                    "created": 1755278015.6289635,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_save_only",
@@ -12674,16 +12674,16 @@
                                     "lineno": 301,
                                     "message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_source_key_def.json)",
                                     "module": "__init__",
-                                    "msecs": 798.0,
+                                    "msecs": 628.0,
                                     "msg": "cache-file stored (%s)",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8255.856148,
+                                    "relativeCreated": 8159.264147,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -12692,8 +12692,8 @@
                                         "'__string__'",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,799",
-                                    "created": 1755176320.7992945,
+                                    "asctime": "2025-08-15 19:13:35,629",
+                                    "created": 1755278015.6291258,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -12702,16 +12702,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=str): '__string__' ()",
                                     "module": "test",
-                                    "msecs": 799.0,
+                                    "msecs": 629.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8256.482598,
+                                    "relativeCreated": 8159.426542,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -12721,8 +12721,8 @@
                                         "'__string__'",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,799",
-                                    "created": 1755176320.7996085,
+                                    "asctime": "2025-08-15 19:13:35,629",
+                                    "created": 1755278015.6291947,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -12731,39 +12731,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=str): result = '__string__' ()",
                                     "module": "test",
-                                    "msecs": 799.0,
+                                    "msecs": 629.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8256.796798,
+                                    "relativeCreated": 8159.495413,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 799.0,
+                            "msecs": 629.0,
                             "msg": "Data from cached instance with key=str is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 8257.08796,
+                            "relativeCreated": 8159.553119,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.0002913475036621094
+                            "time_consumption": 5.793571472167969e-05
                         },
                         {
                             "args": [
                                 "'unicode'",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:40,800",
-                            "created": 1755176320.8007364,
+                            "asctime": "2025-08-15 19:13:35,629",
+                            "created": 1755278015.6295326,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -12777,8 +12777,8 @@
                                     "args": [
                                         "unicode"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,800",
-                                    "created": 1755176320.8002532,
+                                    "asctime": "2025-08-15 19:13:35,629",
+                                    "created": 1755278015.6293592,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -12787,16 +12787,16 @@
                                     "lineno": 157,
                                     "message": "Providing property for 'unicode' from cache",
                                     "module": "__init__",
-                                    "msecs": 800.0,
+                                    "msecs": 629.0,
                                     "msg": "Providing property for '%s' from cache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8257.441353,
+                                    "relativeCreated": 8159.659936,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -12805,8 +12805,8 @@
                                         "'unicode'",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,800",
-                                    "created": 1755176320.8004498,
+                                    "asctime": "2025-08-15 19:13:35,629",
+                                    "created": 1755278015.6294274,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -12815,16 +12815,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=unicode): 'unicode' ()",
                                     "module": "test",
-                                    "msecs": 800.0,
+                                    "msecs": 629.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8257.637887,
+                                    "relativeCreated": 8159.728008,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -12834,8 +12834,8 @@
                                         "'unicode'",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,800",
-                                    "created": 1755176320.800598,
+                                    "asctime": "2025-08-15 19:13:35,629",
+                                    "created": 1755278015.6294804,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -12844,39 +12844,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=unicode): result = 'unicode' ()",
                                     "module": "test",
-                                    "msecs": 800.0,
+                                    "msecs": 629.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8257.786159,
+                                    "relativeCreated": 8159.780947,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 800.0,
+                            "msecs": 629.0,
                             "msg": "Data from cached instance with key=unicode is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 8257.924695,
+                            "relativeCreated": 8159.833379,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.0001385211944580078
+                            "time_consumption": 5.221366882324219e-05
                         },
                         {
                             "args": [
                                 "17",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:40,801",
-                            "created": 1755176320.8014667,
+                            "asctime": "2025-08-15 19:13:35,629",
+                            "created": 1755278015.6297953,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -12890,8 +12890,8 @@
                                     "args": [
                                         "integer"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,800",
-                                    "created": 1755176320.8009841,
+                                    "asctime": "2025-08-15 19:13:35,629",
+                                    "created": 1755278015.6296215,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -12900,16 +12900,16 @@
                                     "lineno": 157,
                                     "message": "Providing property for 'integer' from cache",
                                     "module": "__init__",
-                                    "msecs": 800.0,
+                                    "msecs": 629.0,
                                     "msg": "Providing property for '%s' from cache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8258.172061,
+                                    "relativeCreated": 8159.922211,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -12918,8 +12918,8 @@
                                         "17",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,801",
-                                    "created": 1755176320.801161,
+                                    "asctime": "2025-08-15 19:13:35,629",
+                                    "created": 1755278015.6296833,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -12928,16 +12928,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=integer): 17 ()",
                                     "module": "test",
-                                    "msecs": 801.0,
+                                    "msecs": 629.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8258.349035,
+                                    "relativeCreated": 8159.983728,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -12947,8 +12947,8 @@
                                         "17",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,801",
-                                    "created": 1755176320.801327,
+                                    "asctime": "2025-08-15 19:13:35,629",
+                                    "created": 1755278015.6297457,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -12957,39 +12957,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=integer): result = 17 ()",
                                     "module": "test",
-                                    "msecs": 801.0,
+                                    "msecs": 629.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8258.515145,
+                                    "relativeCreated": 8160.046268,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 801.0,
+                            "msecs": 629.0,
                             "msg": "Data from cached instance with key=integer is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 8258.654664,
+                            "relativeCreated": 8160.095984,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.00013971328735351562
+                            "time_consumption": 4.9591064453125e-05
                         },
                         {
                             "args": [
                                 "2.71828",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:40,803",
-                            "created": 1755176320.8039434,
+                            "asctime": "2025-08-15 19:13:35,630",
+                            "created": 1755278015.6307044,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -13003,8 +13003,8 @@
                                     "args": [
                                         "float"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,801",
-                                    "created": 1755176320.8016973,
+                                    "asctime": "2025-08-15 19:13:35,629",
+                                    "created": 1755278015.6298792,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -13013,52 +13013,52 @@
                                     "lineno": 163,
                                     "message": "Loading property for key='float' from source instance",
                                     "module": "__init__",
-                                    "msecs": 801.0,
+                                    "msecs": 629.0,
                                     "msg": "Loading property for key='%s' from source instance",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8258.885353,
+                                    "relativeCreated": 8160.179898,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "float",
                                         2.71828,
-                                        1755176320
+                                        1755278015
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,801",
-                                    "created": 1755176320.8018622,
+                                    "asctime": "2025-08-15 19:13:35,629",
+                                    "created": 1755278015.6299407,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
                                     "levelname": "DEBUG",
                                     "levelno": 10,
                                     "lineno": 167,
-                                    "message": "Adding key=float, value=2.71828 with timestamp=1755176320 to chache",
+                                    "message": "Adding key=float, value=2.71828 with timestamp=1755278015 to chache",
                                     "module": "__init__",
-                                    "msecs": 801.0,
+                                    "msecs": 629.0,
                                     "msg": "Adding key=%s, value=%s with timestamp=%d to chache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8259.05023,
+                                    "relativeCreated": 8160.24138,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_source_key_def.json"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,803",
-                                    "created": 1755176320.803096,
+                                    "asctime": "2025-08-15 19:13:35,630",
+                                    "created": 1755278015.6304126,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_save_only",
@@ -13067,16 +13067,16 @@
                                     "lineno": 301,
                                     "message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_source_key_def.json)",
                                     "module": "__init__",
-                                    "msecs": 803.0,
+                                    "msecs": 630.0,
                                     "msg": "cache-file stored (%s)",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8260.284204,
+                                    "relativeCreated": 8160.713256,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -13085,8 +13085,8 @@
                                         "2.71828",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,803",
-                                    "created": 1755176320.8035612,
+                                    "asctime": "2025-08-15 19:13:35,630",
+                                    "created": 1755278015.630573,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -13095,16 +13095,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=float): 2.71828 ()",
                                     "module": "test",
-                                    "msecs": 803.0,
+                                    "msecs": 630.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8260.749189,
+                                    "relativeCreated": 8160.873553,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -13114,8 +13114,8 @@
                                         "2.71828",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,803",
-                                    "created": 1755176320.8037481,
+                                    "asctime": "2025-08-15 19:13:35,630",
+                                    "created": 1755278015.63065,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -13124,39 +13124,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=float): result = 2.71828 ()",
                                     "module": "test",
-                                    "msecs": 803.0,
+                                    "msecs": 630.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8260.936124,
+                                    "relativeCreated": 8160.950615,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 803.0,
+                            "msecs": 630.0,
                             "msg": "Data from cached instance with key=float is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 8261.131407,
+                            "relativeCreated": 8161.004877,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.0001952648162841797
+                            "time_consumption": 5.435943603515625e-05
                         },
                         {
                             "args": [
                                 "[1, 'two', '3', 4]",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:40,805",
-                            "created": 1755176320.8051643,
+                            "asctime": "2025-08-15 19:13:35,630",
+                            "created": 1755278015.6309958,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -13170,8 +13170,8 @@
                                     "args": [
                                         "list"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,804",
-                                    "created": 1755176320.8044028,
+                                    "asctime": "2025-08-15 19:13:35,630",
+                                    "created": 1755278015.630796,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -13180,16 +13180,16 @@
                                     "lineno": 157,
                                     "message": "Providing property for 'list' from cache",
                                     "module": "__init__",
-                                    "msecs": 804.0,
+                                    "msecs": 630.0,
                                     "msg": "Providing property for '%s' from cache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8261.591129,
+                                    "relativeCreated": 8161.096569,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -13198,8 +13198,8 @@
                                         "[ 1, 'two', '3', 4 ]",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,804",
-                                    "created": 1755176320.8047545,
+                                    "asctime": "2025-08-15 19:13:35,630",
+                                    "created": 1755278015.6308675,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -13208,16 +13208,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=list): [ 1, 'two', '3', 4 ] ()",
                                     "module": "test",
-                                    "msecs": 804.0,
+                                    "msecs": 630.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8261.942592,
+                                    "relativeCreated": 8161.16807,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -13227,8 +13227,8 @@
                                         "[ 1, 'two', '3', 4 ]",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,804",
-                                    "created": 1755176320.8049545,
+                                    "asctime": "2025-08-15 19:13:35,630",
+                                    "created": 1755278015.6309261,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -13237,39 +13237,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=list): result = [ 1, 'two', '3', 4 ] ()",
                                     "module": "test",
-                                    "msecs": 804.0,
+                                    "msecs": 630.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8262.142649,
+                                    "relativeCreated": 8161.226586,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 805.0,
+                            "msecs": 630.0,
                             "msg": "Data from cached instance with key=list is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 8262.352408,
+                            "relativeCreated": 8161.296249,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.000209808349609375
+                            "time_consumption": 6.961822509765625e-05
                         },
                         {
                             "args": [
                                 "{'1': 1, '2': 'two', '3': '3', '4': 4}",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:40,806",
-                            "created": 1755176320.806036,
+                            "asctime": "2025-08-15 19:13:35,631",
+                            "created": 1755278015.631284,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -13283,8 +13283,8 @@
                                     "args": [
                                         "dict"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,805",
-                                    "created": 1755176320.8054519,
+                                    "asctime": "2025-08-15 19:13:35,631",
+                                    "created": 1755278015.6310818,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -13293,16 +13293,16 @@
                                     "lineno": 157,
                                     "message": "Providing property for 'dict' from cache",
                                     "module": "__init__",
-                                    "msecs": 805.0,
+                                    "msecs": 631.0,
                                     "msg": "Providing property for '%s' from cache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8262.639771,
+                                    "relativeCreated": 8161.38232,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -13311,8 +13311,8 @@
                                         "{ '1': 1, '2': 'two', '3': '3', '4': 4 }",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,805",
-                                    "created": 1755176320.8056662,
+                                    "asctime": "2025-08-15 19:13:35,631",
+                                    "created": 1755278015.6311536,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -13321,16 +13321,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=dict): { '1': 1, '2': 'two', '3': '3', '4': 4 } ()",
                                     "module": "test",
-                                    "msecs": 805.0,
+                                    "msecs": 631.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8262.854331,
+                                    "relativeCreated": 8161.454221,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -13340,8 +13340,8 @@
                                         "{ '1': 1, '2': 'two', '3': '3', '4': 4 }",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,805",
-                                    "created": 1755176320.8058376,
+                                    "asctime": "2025-08-15 19:13:35,631",
+                                    "created": 1755278015.6312127,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -13350,39 +13350,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=dict): result = { '1': 1, '2': 'two', '3': '3', '4': 4 } ()",
                                     "module": "test",
-                                    "msecs": 805.0,
+                                    "msecs": 631.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8263.025628,
+                                    "relativeCreated": 8161.513472,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 806.0,
+                            "msecs": 631.0,
                             "msg": "Data from cached instance with key=dict is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 8263.224033,
+                            "relativeCreated": 8161.584658,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.0001983642578125
+                            "time_consumption": 7.128715515136719e-05
                         },
                         {
                             "args": [
                                 "None",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:40,806",
-                            "created": 1755176320.8069675,
+                            "asctime": "2025-08-15 19:13:35,631",
+                            "created": 1755278015.6315467,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -13396,8 +13396,8 @@
                                     "args": [
                                         "none"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,806",
-                                    "created": 1755176320.806423,
+                                    "asctime": "2025-08-15 19:13:35,631",
+                                    "created": 1755278015.6313708,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -13406,16 +13406,16 @@
                                     "lineno": 157,
                                     "message": "Providing property for 'none' from cache",
                                     "module": "__init__",
-                                    "msecs": 806.0,
+                                    "msecs": 631.0,
                                     "msg": "Providing property for '%s' from cache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8263.611166,
+                                    "relativeCreated": 8161.671482,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -13424,8 +13424,8 @@
                                         "None",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,806",
-                                    "created": 1755176320.8066256,
+                                    "asctime": "2025-08-15 19:13:35,631",
+                                    "created": 1755278015.6314316,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -13434,16 +13434,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=none): None ()",
                                     "module": "test",
-                                    "msecs": 806.0,
+                                    "msecs": 631.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8263.813617,
+                                    "relativeCreated": 8161.732323,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -13453,8 +13453,8 @@
                                         "None",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,806",
-                                    "created": 1755176320.806797,
+                                    "asctime": "2025-08-15 19:13:35,631",
+                                    "created": 1755278015.6314886,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -13463,43 +13463,43 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=none): result = None ()",
                                     "module": "test",
-                                    "msecs": 806.0,
+                                    "msecs": 631.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8263.985136,
+                                    "relativeCreated": 8161.789234,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 806.0,
+                            "msecs": 631.0,
                             "msg": "Data from cached instance with key=none is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 8264.155642,
+                            "relativeCreated": 8161.847265,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.0001704692840576172
+                            "time_consumption": 5.817413330078125e-05
                         }
                     ],
-                    "thread": 140229749231872,
+                    "thread": 140171799056640,
                     "threadName": "MainThread",
-                    "time_consumption": 0.015199899673461914,
-                    "time_finished": "2025-08-14 14:58:40,806",
-                    "time_start": "2025-08-14 14:58:40,791"
+                    "time_consumption": 0.005298614501953125,
+                    "time_finished": "2025-08-15 19:13:35,631",
+                    "time_start": "2025-08-15 19:13:35,626"
                 },
                 "REQ-0011": {
                     "args": null,
-                    "asctime": "2025-08-14 14:58:40,807",
-                    "created": 1755176320.807683,
+                    "asctime": "2025-08-15 19:13:35,631",
+                    "created": 1755278015.6317372,
                     "exc_text": null,
                     "filename": "__init__.py",
                     "funcName": "testCase",
@@ -13509,20 +13509,20 @@
                     "message": "REQ-0011",
                     "module": "__init__",
                     "moduleLogger": [],
-                    "msecs": 807.0,
+                    "msecs": 631.0,
                     "msg": "REQ-0011",
                     "name": "__tLogger__",
                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/report/__init__.py",
-                    "process": 743412,
+                    "process": 1015645,
                     "processName": "MainProcess",
-                    "relativeCreated": 8264.871157,
+                    "relativeCreated": 8162.038005,
                     "stack_info": null,
                     "taskName": null,
                     "testcaseLogger": [
                         {
                             "args": [],
-                            "asctime": "2025-08-14 14:58:40,808",
-                            "created": 1755176320.808456,
+                            "asctime": "2025-08-15 19:13:35,631",
+                            "created": 1755278015.6319938,
                             "exc_text": null,
                             "filename": "test_helpers.py",
                             "funcName": "clean",
@@ -13534,8 +13534,8 @@
                             "moduleLogger": [
                                 {
                                     "args": [],
-                                    "asctime": "2025-08-14 14:58:40,808",
-                                    "created": 1755176320.808119,
+                                    "asctime": "2025-08-15 19:13:35,631",
+                                    "created": 1755278015.6318884,
                                     "exc_text": null,
                                     "filename": "test_helpers.py",
                                     "funcName": "clean",
@@ -13544,36 +13544,36 @@
                                     "lineno": 17,
                                     "message": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
                                     "module": "test_helpers",
-                                    "msecs": 808.0,
+                                    "msecs": 631.0,
                                     "msg": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_helpers.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8265.307105,
+                                    "relativeCreated": 8162.188974,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 808.0,
+                            "msecs": 631.0,
                             "msg": "Prepare: Cleanup before testcase execution",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_helpers.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 8265.643905,
+                            "relativeCreated": 8162.29434,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.0003368854522705078
+                            "time_consumption": 0.00010538101196289062
                         },
                         {
                             "args": [],
-                            "asctime": "2025-08-14 14:58:40,808",
-                            "created": 1755176320.808717,
+                            "asctime": "2025-08-15 19:13:35,632",
+                            "created": 1755278015.6320863,
                             "exc_text": null,
                             "filename": "test_save_callback.py",
                             "funcName": "save_callback",
@@ -13583,16 +13583,16 @@
                             "message": "Installing save_callback with no get or full_update execution.",
                             "module": "test_save_callback",
                             "moduleLogger": [],
-                            "msecs": 808.0,
+                            "msecs": 632.0,
                             "msg": "Installing save_callback with no get or full_update execution.",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_save_callback.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 8265.905246,
+                            "relativeCreated": 8162.386827,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
                             "time_consumption": 0.0
                         },
@@ -13601,8 +13601,8 @@
                                 "0",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:40,809",
-                            "created": 1755176320.809276,
+                            "asctime": "2025-08-15 19:13:35,632",
+                            "created": 1755278015.6322892,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -13618,8 +13618,8 @@
                                         "0",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,808",
-                                    "created": 1755176320.8089771,
+                                    "asctime": "2025-08-15 19:13:35,632",
+                                    "created": 1755278015.6321807,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -13628,16 +13628,16 @@
                                     "lineno": 22,
                                     "message": "Result (Save callback execution counter): 0 ()",
                                     "module": "test",
-                                    "msecs": 808.0,
+                                    "msecs": 632.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8266.165168,
+                                    "relativeCreated": 8162.481352,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -13647,8 +13647,8 @@
                                         "0",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,809",
-                                    "created": 1755176320.809134,
+                                    "asctime": "2025-08-15 19:13:35,632",
+                                    "created": 1755278015.6322377,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -13657,39 +13657,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Save callback execution counter): result = 0 ()",
                                     "module": "test",
-                                    "msecs": 809.0,
+                                    "msecs": 632.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8266.3222,
+                                    "relativeCreated": 8162.538095,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 809.0,
+                            "msecs": 632.0,
                             "msg": "Save callback execution counter is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 8266.464347,
+                            "relativeCreated": 8162.589871,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.00014209747314453125
+                            "time_consumption": 5.14984130859375e-05
                         },
                         {
                             "args": [
                                 "None",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:40,809",
-                            "created": 1755176320.8099244,
+                            "asctime": "2025-08-15 19:13:35,632",
+                            "created": 1755278015.6324725,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -13705,8 +13705,8 @@
                                         "None",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,809",
-                                    "created": 1755176320.8095016,
+                                    "asctime": "2025-08-15 19:13:35,632",
+                                    "created": 1755278015.6323712,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -13715,16 +13715,16 @@
                                     "lineno": 22,
                                     "message": "Result (Save callback execution counter): None ()",
                                     "module": "test",
-                                    "msecs": 809.0,
+                                    "msecs": 632.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8266.689844,
+                                    "relativeCreated": 8162.671714,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -13734,8 +13734,8 @@
                                         "None",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,809",
-                                    "created": 1755176320.809744,
+                                    "asctime": "2025-08-15 19:13:35,632",
+                                    "created": 1755278015.6324232,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -13744,43 +13744,43 @@
                                     "lineno": 26,
                                     "message": "Expectation (Save callback execution counter): result = None ()",
                                     "module": "test",
-                                    "msecs": 809.0,
+                                    "msecs": 632.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8266.93206,
+                                    "relativeCreated": 8162.723844,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 809.0,
+                            "msecs": 632.0,
                             "msg": "Save callback execution counter is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 8267.112562,
+                            "relativeCreated": 8162.773219,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.0001804828643798828
+                            "time_consumption": 4.935264587402344e-05
                         }
                     ],
-                    "thread": 140229749231872,
+                    "thread": 140171799056640,
                     "threadName": "MainThread",
-                    "time_consumption": 0.002241373062133789,
-                    "time_finished": "2025-08-14 14:58:40,809",
-                    "time_start": "2025-08-14 14:58:40,807"
+                    "time_consumption": 0.0007352828979492188,
+                    "time_finished": "2025-08-15 19:13:35,632",
+                    "time_start": "2025-08-15 19:13:35,631"
                 },
                 "REQ-0012": {
                     "args": null,
-                    "asctime": "2025-08-14 14:58:40,810",
-                    "created": 1755176320.810445,
+                    "asctime": "2025-08-15 19:13:35,632",
+                    "created": 1755278015.6326344,
                     "exc_text": null,
                     "filename": "__init__.py",
                     "funcName": "testCase",
@@ -13790,20 +13790,20 @@
                     "message": "REQ-0012",
                     "module": "__init__",
                     "moduleLogger": [],
-                    "msecs": 810.0,
+                    "msecs": 632.0,
                     "msg": "REQ-0012",
                     "name": "__tLogger__",
                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/report/__init__.py",
-                    "process": 743412,
+                    "process": 1015645,
                     "processName": "MainProcess",
-                    "relativeCreated": 8267.633176,
+                    "relativeCreated": 8162.9349,
                     "stack_info": null,
                     "taskName": null,
                     "testcaseLogger": [
                         {
                             "args": [],
-                            "asctime": "2025-08-14 14:58:40,810",
-                            "created": 1755176320.8109167,
+                            "asctime": "2025-08-15 19:13:35,632",
+                            "created": 1755278015.632804,
                             "exc_text": null,
                             "filename": "test_helpers.py",
                             "funcName": "clean",
@@ -13815,8 +13815,8 @@
                             "moduleLogger": [
                                 {
                                     "args": [],
-                                    "asctime": "2025-08-14 14:58:40,810",
-                                    "created": 1755176320.8107724,
+                                    "asctime": "2025-08-15 19:13:35,632",
+                                    "created": 1755278015.632751,
                                     "exc_text": null,
                                     "filename": "test_helpers.py",
                                     "funcName": "clean",
@@ -13825,36 +13825,36 @@
                                     "lineno": 20,
                                     "message": "Cache file does not exist on filesystem.",
                                     "module": "test_helpers",
-                                    "msecs": 810.0,
+                                    "msecs": 632.0,
                                     "msg": "Cache file does not exist on filesystem.",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_helpers.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8267.960584,
+                                    "relativeCreated": 8163.051816,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 810.0,
+                            "msecs": 632.0,
                             "msg": "Prepare: Cleanup before testcase execution",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_helpers.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 8268.10464,
+                            "relativeCreated": 8163.104457,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.0001442432403564453
+                            "time_consumption": 5.2928924560546875e-05
                         },
                         {
                             "args": [],
-                            "asctime": "2025-08-14 14:58:40,813",
-                            "created": 1755176320.8132975,
+                            "asctime": "2025-08-15 19:13:35,633",
+                            "created": 1755278015.6339018,
                             "exc_text": null,
                             "filename": "test_save_callback.py",
                             "funcName": "save_callback",
@@ -13866,8 +13866,8 @@
                             "moduleLogger": [
                                 {
                                     "args": [],
-                                    "asctime": "2025-08-14 14:58:40,811",
-                                    "created": 1755176320.811181,
+                                    "asctime": "2025-08-15 19:13:35,632",
+                                    "created": 1755278015.6329002,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_load_cache",
@@ -13876,24 +13876,24 @@
                                     "lineno": 237,
                                     "message": "Cache file does not exists (yet).",
                                     "module": "__init__",
-                                    "msecs": 811.0,
+                                    "msecs": 632.0,
                                     "msg": "Cache file does not exists (yet).",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8268.369096,
+                                    "relativeCreated": 8163.200929,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "['str', 'unicode', 'integer', 'float', 'list', 'dict', 'none']"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,811",
-                                    "created": 1755176320.8113892,
+                                    "asctime": "2025-08-15 19:13:35,632",
+                                    "created": 1755278015.6329792,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_load_source",
@@ -13902,24 +13902,24 @@
                                     "lineno": 246,
                                     "message": "Loading all data from source - ['str', 'unicode', 'integer', 'float', 'list', 'dict', 'none']",
                                     "module": "__init__",
-                                    "msecs": 811.0,
+                                    "msecs": 632.0,
                                     "msg": "Loading all data from source - %s",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8268.577221,
+                                    "relativeCreated": 8163.279794,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "/home/dirk/work/unittest_collection/caching/unittest/output_data/save_callback_callback.json"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,812",
-                                    "created": 1755176320.812973,
+                                    "asctime": "2025-08-15 19:13:35,633",
+                                    "created": 1755278015.633786,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_save_only",
@@ -13928,39 +13928,39 @@
                                     "lineno": 301,
                                     "message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/save_callback_callback.json)",
                                     "module": "__init__",
-                                    "msecs": 812.0,
+                                    "msecs": 633.0,
                                     "msg": "cache-file stored (%s)",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8270.161159,
+                                    "relativeCreated": 8164.086532,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 813.0,
+                            "msecs": 633.0,
                             "msg": "Installing save_callback and execute full_update.",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_save_callback.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 8270.485616,
+                            "relativeCreated": 8164.202426,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.00032448768615722656
+                            "time_consumption": 0.00011587142944335938
                         },
                         {
                             "args": [
                                 "1",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:40,813",
-                            "created": 1755176320.8139753,
+                            "asctime": "2025-08-15 19:13:35,634",
+                            "created": 1755278015.634113,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -13976,8 +13976,8 @@
                                         "1",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,813",
-                                    "created": 1755176320.813662,
+                                    "asctime": "2025-08-15 19:13:35,634",
+                                    "created": 1755278015.6340039,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -13986,16 +13986,16 @@
                                     "lineno": 22,
                                     "message": "Result (Save callback execution counter): 1 ()",
                                     "module": "test",
-                                    "msecs": 813.0,
+                                    "msecs": 634.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8270.850007,
+                                    "relativeCreated": 8164.304629,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -14005,8 +14005,8 @@
                                         "1",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,813",
-                                    "created": 1755176320.8138309,
+                                    "asctime": "2025-08-15 19:13:35,634",
+                                    "created": 1755278015.6340616,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -14015,130 +14015,130 @@
                                     "lineno": 26,
                                     "message": "Expectation (Save callback execution counter): result = 1 ()",
                                     "module": "test",
-                                    "msecs": 813.0,
+                                    "msecs": 634.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8271.018921,
+                                    "relativeCreated": 8164.362211,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 813.0,
+                            "msecs": 634.0,
                             "msg": "Save callback execution counter is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 8271.163456,
+                            "relativeCreated": 8164.413732,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.00014448165893554688
+                            "time_consumption": 5.14984130859375e-05
                         },
                         {
                             "args": [
-                                "",
+                                "",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:40,814",
-                            "created": 1755176320.8145664,
+                            "asctime": "2025-08-15 19:13:35,634",
+                            "created": 1755278015.6343045,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
                             "levelname": "INFO",
                             "levelno": 20,
                             "lineno": 184,
-                            "message": "Save callback execution counter is correct (Content  and Type is ).",
+                            "message": "Save callback execution counter is correct (Content  and Type is ).",
                             "module": "test",
                             "moduleLogger": [
                                 {
                                     "args": [
                                         "Save callback execution counter",
-                                        "",
+                                        "",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,814",
-                                    "created": 1755176320.81421,
+                                    "asctime": "2025-08-15 19:13:35,634",
+                                    "created": 1755278015.6341991,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
                                     "levelname": "DEBUG",
                                     "levelno": 10,
                                     "lineno": 22,
-                                    "message": "Result (Save callback execution counter):  ()",
+                                    "message": "Result (Save callback execution counter):  ()",
                                     "module": "test",
-                                    "msecs": 814.0,
+                                    "msecs": 634.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8271.398149,
+                                    "relativeCreated": 8164.499772,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "Save callback execution counter",
                                         "=",
-                                        "",
+                                        "",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,814",
-                                    "created": 1755176320.8144214,
+                                    "asctime": "2025-08-15 19:13:35,634",
+                                    "created": 1755278015.6342537,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
                                     "levelname": "DEBUG",
                                     "levelno": 10,
                                     "lineno": 26,
-                                    "message": "Expectation (Save callback execution counter): result =  ()",
+                                    "message": "Expectation (Save callback execution counter): result =  ()",
                                     "module": "test",
-                                    "msecs": 814.0,
+                                    "msecs": 634.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8271.609726,
+                                    "relativeCreated": 8164.554382,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 814.0,
+                            "msecs": 634.0,
                             "msg": "Save callback execution counter is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 8271.754423,
+                            "relativeCreated": 8164.605159,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.00014495849609375
+                            "time_consumption": 5.078315734863281e-05
                         }
                     ],
-                    "thread": 140229749231872,
+                    "thread": 140171799056640,
                     "threadName": "MainThread",
-                    "time_consumption": 0.004121303558349609,
-                    "time_finished": "2025-08-14 14:58:40,814",
-                    "time_start": "2025-08-14 14:58:40,810"
+                    "time_consumption": 0.0016701221466064453,
+                    "time_finished": "2025-08-15 19:13:35,634",
+                    "time_start": "2025-08-15 19:13:35,632"
                 },
                 "REQ-0013": {
                     "args": null,
-                    "asctime": "2025-08-14 14:58:40,815",
-                    "created": 1755176320.8151588,
+                    "asctime": "2025-08-15 19:13:35,634",
+                    "created": 1755278015.6344678,
                     "exc_text": null,
                     "filename": "__init__.py",
                     "funcName": "testCase",
@@ -14148,20 +14148,20 @@
                     "message": "REQ-0013",
                     "module": "__init__",
                     "moduleLogger": [],
-                    "msecs": 815.0,
+                    "msecs": 634.0,
                     "msg": "REQ-0013",
                     "name": "__tLogger__",
                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/report/__init__.py",
-                    "process": 743412,
+                    "process": 1015645,
                     "processName": "MainProcess",
-                    "relativeCreated": 8272.346841,
+                    "relativeCreated": 8164.768395,
                     "stack_info": null,
                     "taskName": null,
                     "testcaseLogger": [
                         {
                             "args": [],
-                            "asctime": "2025-08-14 14:58:40,816",
-                            "created": 1755176320.8160403,
+                            "asctime": "2025-08-15 19:13:35,634",
+                            "created": 1755278015.6346805,
                             "exc_text": null,
                             "filename": "test_helpers.py",
                             "funcName": "clean",
@@ -14173,8 +14173,8 @@
                             "moduleLogger": [
                                 {
                                     "args": [],
-                                    "asctime": "2025-08-14 14:58:40,815",
-                                    "created": 1755176320.8156607,
+                                    "asctime": "2025-08-15 19:13:35,634",
+                                    "created": 1755278015.6345792,
                                     "exc_text": null,
                                     "filename": "test_helpers.py",
                                     "funcName": "clean",
@@ -14183,36 +14183,36 @@
                                     "lineno": 17,
                                     "message": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
                                     "module": "test_helpers",
-                                    "msecs": 815.0,
+                                    "msecs": 634.0,
                                     "msg": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_helpers.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8272.849005,
+                                    "relativeCreated": 8164.879688,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 816.0,
+                            "msecs": 634.0,
                             "msg": "Prepare: Cleanup before testcase execution",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_helpers.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 8273.228361,
+                            "relativeCreated": 8164.981132,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.0003795623779296875
+                            "time_consumption": 0.00010132789611816406
                         },
                         {
                             "args": [],
-                            "asctime": "2025-08-14 14:58:40,818",
-                            "created": 1755176320.8182948,
+                            "asctime": "2025-08-15 19:13:35,635",
+                            "created": 1755278015.635231,
                             "exc_text": null,
                             "filename": "test_save_callback.py",
                             "funcName": "save_callback",
@@ -14224,8 +14224,8 @@
                             "moduleLogger": [
                                 {
                                     "args": [],
-                                    "asctime": "2025-08-14 14:58:40,816",
-                                    "created": 1755176320.8165503,
+                                    "asctime": "2025-08-15 19:13:35,634",
+                                    "created": 1755278015.6347873,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_load_cache",
@@ -14234,24 +14234,24 @@
                                     "lineno": 237,
                                     "message": "Cache file does not exists (yet).",
                                     "module": "__init__",
-                                    "msecs": 816.0,
+                                    "msecs": 634.0,
                                     "msg": "Cache file does not exists (yet).",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8273.738309,
+                                    "relativeCreated": 8165.087812,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "str"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,816",
-                                    "created": 1755176320.816824,
+                                    "asctime": "2025-08-15 19:13:35,634",
+                                    "created": 1755278015.6348615,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -14260,52 +14260,52 @@
                                     "lineno": 163,
                                     "message": "Loading property for key='str' from source instance",
                                     "module": "__init__",
-                                    "msecs": 816.0,
+                                    "msecs": 634.0,
                                     "msg": "Loading property for key='%s' from source instance",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8274.01213,
+                                    "relativeCreated": 8165.162098,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "str",
                                         "string",
-                                        1755176320
+                                        1755278015
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,817",
-                                    "created": 1755176320.817019,
+                                    "asctime": "2025-08-15 19:13:35,634",
+                                    "created": 1755278015.634925,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
                                     "levelname": "DEBUG",
                                     "levelno": 10,
                                     "lineno": 167,
-                                    "message": "Adding key=str, value=string with timestamp=1755176320 to chache",
+                                    "message": "Adding key=str, value=string with timestamp=1755278015 to chache",
                                     "module": "__init__",
-                                    "msecs": 817.0,
+                                    "msecs": 634.0,
                                     "msg": "Adding key=%s, value=%s with timestamp=%d to chache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8274.206986,
+                                    "relativeCreated": 8165.225282,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "/home/dirk/work/unittest_collection/caching/unittest/output_data/save_callback_callback.json"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,817",
-                                    "created": 1755176320.8177853,
+                                    "asctime": "2025-08-15 19:13:35,635",
+                                    "created": 1755278015.635128,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_save_only",
@@ -14314,36 +14314,36 @@
                                     "lineno": 301,
                                     "message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/save_callback_callback.json)",
                                     "module": "__init__",
-                                    "msecs": 817.0,
+                                    "msecs": 635.0,
                                     "msg": "cache-file stored (%s)",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8274.973463,
+                                    "relativeCreated": 8165.42858,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 818.0,
+                            "msecs": 635.0,
                             "msg": "Installing save_callback and execute a single get.",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_save_callback.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 8275.482901,
+                            "relativeCreated": 8165.531495,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.0005095005035400391
+                            "time_consumption": 0.000102996826171875
                         },
                         {
                             "args": [],
-                            "asctime": "2025-08-14 14:58:40,820",
-                            "created": 1755176320.820215,
+                            "asctime": "2025-08-15 19:13:35,635",
+                            "created": 1755278015.63572,
                             "exc_text": null,
                             "filename": "test_save_callback.py",
                             "funcName": "save_callback",
@@ -14357,8 +14357,8 @@
                                     "args": [
                                         "unicode"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,818",
-                                    "created": 1755176320.8187554,
+                                    "asctime": "2025-08-15 19:13:35,635",
+                                    "created": 1755278015.6353269,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -14367,52 +14367,52 @@
                                     "lineno": 163,
                                     "message": "Loading property for key='unicode' from source instance",
                                     "module": "__init__",
-                                    "msecs": 818.0,
+                                    "msecs": 635.0,
                                     "msg": "Loading property for key='%s' from source instance",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8275.943353,
+                                    "relativeCreated": 8165.627493,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "unicode",
                                         "unicode",
-                                        1755176320
+                                        1755278015
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,819",
-                                    "created": 1755176320.8190334,
+                                    "asctime": "2025-08-15 19:13:35,635",
+                                    "created": 1755278015.6353834,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
                                     "levelname": "DEBUG",
                                     "levelno": 10,
                                     "lineno": 167,
-                                    "message": "Adding key=unicode, value=unicode with timestamp=1755176320 to chache",
+                                    "message": "Adding key=unicode, value=unicode with timestamp=1755278015 to chache",
                                     "module": "__init__",
-                                    "msecs": 819.0,
+                                    "msecs": 635.0,
                                     "msg": "Adding key=%s, value=%s with timestamp=%d to chache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8276.221391,
+                                    "relativeCreated": 8165.684021,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "/home/dirk/work/unittest_collection/caching/unittest/output_data/save_callback_callback.json"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,819",
-                                    "created": 1755176320.8197846,
+                                    "asctime": "2025-08-15 19:13:35,635",
+                                    "created": 1755278015.6355932,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_save_only",
@@ -14421,39 +14421,39 @@
                                     "lineno": 301,
                                     "message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/save_callback_callback.json)",
                                     "module": "__init__",
-                                    "msecs": 819.0,
+                                    "msecs": 635.0,
                                     "msg": "cache-file stored (%s)",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8276.972876,
+                                    "relativeCreated": 8165.893875,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 820.0,
+                            "msecs": 635.0,
                             "msg": "Installing save_callback and execute a single get.",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_save_callback.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 8277.403082,
+                            "relativeCreated": 8166.020422,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.0004303455352783203
+                            "time_consumption": 0.00012683868408203125
                         },
                         {
                             "args": [
                                 "2",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:40,821",
-                            "created": 1755176320.8210745,
+                            "asctime": "2025-08-15 19:13:35,635",
+                            "created": 1755278015.6359322,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -14469,8 +14469,8 @@
                                         "2",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,820",
-                                    "created": 1755176320.8206072,
+                                    "asctime": "2025-08-15 19:13:35,635",
+                                    "created": 1755278015.6358228,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -14479,16 +14479,16 @@
                                     "lineno": 22,
                                     "message": "Result (Save callback execution counter): 2 ()",
                                     "module": "test",
-                                    "msecs": 820.0,
+                                    "msecs": 635.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8277.795353,
+                                    "relativeCreated": 8166.123359,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -14498,8 +14498,8 @@
                                         "2",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,820",
-                                    "created": 1755176320.8208332,
+                                    "asctime": "2025-08-15 19:13:35,635",
+                                    "created": 1755278015.6358807,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -14508,130 +14508,130 @@
                                     "lineno": 26,
                                     "message": "Expectation (Save callback execution counter): result = 2 ()",
                                     "module": "test",
-                                    "msecs": 820.0,
+                                    "msecs": 635.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8278.021291,
+                                    "relativeCreated": 8166.181317,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 821.0,
+                            "msecs": 635.0,
                             "msg": "Save callback execution counter is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 8278.262557,
+                            "relativeCreated": 8166.232697,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.00024127960205078125
+                            "time_consumption": 5.14984130859375e-05
                         },
                         {
                             "args": [
-                                "",
+                                "",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:40,821",
-                            "created": 1755176320.821868,
+                            "asctime": "2025-08-15 19:13:35,636",
+                            "created": 1755278015.6361191,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
                             "levelname": "INFO",
                             "levelno": 20,
                             "lineno": 184,
-                            "message": "Save callback execution counter is correct (Content  and Type is ).",
+                            "message": "Save callback execution counter is correct (Content  and Type is ).",
                             "module": "test",
                             "moduleLogger": [
                                 {
                                     "args": [
                                         "Save callback execution counter",
-                                        "",
+                                        "",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,821",
-                                    "created": 1755176320.8214111,
+                                    "asctime": "2025-08-15 19:13:35,636",
+                                    "created": 1755278015.6360152,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
                                     "levelname": "DEBUG",
                                     "levelno": 10,
                                     "lineno": 22,
-                                    "message": "Result (Save callback execution counter):  ()",
+                                    "message": "Result (Save callback execution counter):  ()",
                                     "module": "test",
-                                    "msecs": 821.0,
+                                    "msecs": 636.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8278.599229,
+                                    "relativeCreated": 8166.315818,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "Save callback execution counter",
                                         "=",
-                                        "",
+                                        "",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,821",
-                                    "created": 1755176320.8216128,
+                                    "asctime": "2025-08-15 19:13:35,636",
+                                    "created": 1755278015.6360686,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
                                     "levelname": "DEBUG",
                                     "levelno": 10,
                                     "lineno": 26,
-                                    "message": "Expectation (Save callback execution counter): result =  ()",
+                                    "message": "Expectation (Save callback execution counter): result =  ()",
                                     "module": "test",
-                                    "msecs": 821.0,
+                                    "msecs": 636.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8278.800798,
+                                    "relativeCreated": 8166.369207,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 821.0,
+                            "msecs": 636.0,
                             "msg": "Save callback execution counter is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 8279.056169,
+                            "relativeCreated": 8166.419629,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.0002551078796386719
+                            "time_consumption": 5.054473876953125e-05
                         }
                     ],
-                    "thread": 140229749231872,
+                    "thread": 140171799056640,
                     "threadName": "MainThread",
-                    "time_consumption": 0.006709098815917969,
-                    "time_finished": "2025-08-14 14:58:40,821",
-                    "time_start": "2025-08-14 14:58:40,815"
+                    "time_consumption": 0.0016512870788574219,
+                    "time_finished": "2025-08-15 19:13:35,636",
+                    "time_start": "2025-08-15 19:13:35,634"
                 },
                 "REQ-0014": {
                     "args": null,
-                    "asctime": "2025-08-14 14:58:40,779",
-                    "created": 1755176320.7794154,
+                    "asctime": "2025-08-15 19:13:35,621",
+                    "created": 1755278015.621412,
                     "exc_text": null,
                     "filename": "__init__.py",
                     "funcName": "testCase",
@@ -14641,20 +14641,20 @@
                     "message": "REQ-0014",
                     "module": "__init__",
                     "moduleLogger": [],
-                    "msecs": 779.0,
+                    "msecs": 621.0,
                     "msg": "REQ-0014",
                     "name": "__tLogger__",
                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/report/__init__.py",
-                    "process": 743412,
+                    "process": 1015645,
                     "processName": "MainProcess",
-                    "relativeCreated": 8236.603454,
+                    "relativeCreated": 8151.712675,
                     "stack_info": null,
                     "taskName": null,
                     "testcaseLogger": [
                         {
                             "args": [],
-                            "asctime": "2025-08-14 14:58:40,780",
-                            "created": 1755176320.780031,
+                            "asctime": "2025-08-15 19:13:35,621",
+                            "created": 1755278015.6219203,
                             "exc_text": null,
                             "filename": "test_helpers.py",
                             "funcName": "clean",
@@ -14666,8 +14666,8 @@
                             "moduleLogger": [
                                 {
                                     "args": [],
-                                    "asctime": "2025-08-14 14:58:40,779",
-                                    "created": 1755176320.779751,
+                                    "asctime": "2025-08-15 19:13:35,621",
+                                    "created": 1755278015.6216874,
                                     "exc_text": null,
                                     "filename": "test_helpers.py",
                                     "funcName": "clean",
@@ -14676,38 +14676,38 @@
                                     "lineno": 17,
                                     "message": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
                                     "module": "test_helpers",
-                                    "msecs": 779.0,
+                                    "msecs": 621.0,
                                     "msg": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_helpers.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8236.939288,
+                                    "relativeCreated": 8151.987865,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 780.0,
+                            "msecs": 621.0,
                             "msg": "Prepare: Cleanup before testcase execution",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_helpers.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 8237.21907,
+                            "relativeCreated": 8152.220842,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.0002799034118652344
+                            "time_consumption": 0.00023293495178222656
                         },
                         {
                             "args": [
                                 "'property_cache_json'"
                             ],
-                            "asctime": "2025-08-14 14:58:40,783",
-                            "created": 1755176320.7830966,
+                            "asctime": "2025-08-15 19:13:35,623",
+                            "created": 1755278015.6234086,
                             "exc_text": null,
                             "filename": "test_dump_cache.py",
                             "funcName": "dump_cache",
@@ -14719,8 +14719,8 @@
                             "moduleLogger": [
                                 {
                                     "args": [],
-                                    "asctime": "2025-08-14 14:58:40,780",
-                                    "created": 1755176320.7803736,
+                                    "asctime": "2025-08-15 19:13:35,622",
+                                    "created": 1755278015.6221828,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_load_cache",
@@ -14729,24 +14729,24 @@
                                     "lineno": 237,
                                     "message": "Cache file does not exists (yet).",
                                     "module": "__init__",
-                                    "msecs": 780.0,
+                                    "msecs": 622.0,
                                     "msg": "Cache file does not exists (yet).",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8237.561523,
+                                    "relativeCreated": 8152.483565,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "['str', 'unicode', 'integer', 'float', 'list', 'dict', 'none']"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,780",
-                                    "created": 1755176320.7806964,
+                                    "asctime": "2025-08-15 19:13:35,622",
+                                    "created": 1755278015.6223621,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_load_source",
@@ -14755,24 +14755,24 @@
                                     "lineno": 246,
                                     "message": "Loading all data from source - ['str', 'unicode', 'integer', 'float', 'list', 'dict', 'none']",
                                     "module": "__init__",
-                                    "msecs": 780.0,
+                                    "msecs": 622.0,
                                     "msg": "Loading all data from source - %s",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8237.884486,
+                                    "relativeCreated": 8152.662807,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,782",
-                                    "created": 1755176320.7827754,
+                                    "asctime": "2025-08-15 19:13:35,623",
+                                    "created": 1755278015.6233046,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_save_only",
@@ -14781,39 +14781,39 @@
                                     "lineno": 301,
                                     "message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json)",
                                     "module": "__init__",
-                                    "msecs": 782.0,
+                                    "msecs": 623.0,
                                     "msg": "cache-file stored (%s)",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8239.963388,
+                                    "relativeCreated": 8153.605245,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 783.0,
+                            "msecs": 623.0,
                             "msg": "Prepare: First usage of %s with a class holding the data to be cached",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_dump_cache.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 8240.284673,
+                            "relativeCreated": 8153.709305,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.0003211498260498047
+                            "time_consumption": 0.00010395050048828125
                         },
                         {
                             "args": [
                                 "'string'",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:40,784",
-                            "created": 1755176320.7844121,
+                            "asctime": "2025-08-15 19:13:35,623",
+                            "created": 1755278015.6238782,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -14827,8 +14827,8 @@
                                     "args": [
                                         "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,783",
-                                    "created": 1755176320.78369,
+                                    "asctime": "2025-08-15 19:13:35,623",
+                                    "created": 1755278015.6236167,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_load_only",
@@ -14837,24 +14837,24 @@
                                     "lineno": 296,
                                     "message": "Loading properties from cache (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json)",
                                     "module": "__init__",
-                                    "msecs": 783.0,
+                                    "msecs": 623.0,
                                     "msg": "Loading properties from cache (%s)",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8240.877985,
+                                    "relativeCreated": 8153.917486,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "str"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,783",
-                                    "created": 1755176320.7839143,
+                                    "asctime": "2025-08-15 19:13:35,623",
+                                    "created": 1755278015.6236987,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -14863,16 +14863,16 @@
                                     "lineno": 157,
                                     "message": "Providing property for 'str' from cache",
                                     "module": "__init__",
-                                    "msecs": 783.0,
+                                    "msecs": 623.0,
                                     "msg": "Providing property for '%s' from cache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8241.102233,
+                                    "relativeCreated": 8153.999192,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -14881,8 +14881,8 @@
                                         "'string'",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,784",
-                                    "created": 1755176320.7840974,
+                                    "asctime": "2025-08-15 19:13:35,623",
+                                    "created": 1755278015.6237643,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -14891,16 +14891,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=str): 'string' ()",
                                     "module": "test",
-                                    "msecs": 784.0,
+                                    "msecs": 623.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8241.28573,
+                                    "relativeCreated": 8154.064904,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -14910,8 +14910,8 @@
                                         "'string'",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,784",
-                                    "created": 1755176320.7842503,
+                                    "asctime": "2025-08-15 19:13:35,623",
+                                    "created": 1755278015.6238196,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -14920,39 +14920,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=str): result = 'string' ()",
                                     "module": "test",
-                                    "msecs": 784.0,
+                                    "msecs": 623.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8241.438552,
+                                    "relativeCreated": 8154.12003,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 784.0,
+                            "msecs": 623.0,
                             "msg": "Data from cached instance with key=str is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 8241.600197,
+                            "relativeCreated": 8154.178651,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.00016188621520996094
+                            "time_consumption": 5.8650970458984375e-05
                         },
                         {
                             "args": [
                                 "'unicode'",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:40,785",
-                            "created": 1755176320.7850971,
+                            "asctime": "2025-08-15 19:13:35,624",
+                            "created": 1755278015.624128,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -14966,8 +14966,8 @@
                                     "args": [
                                         "unicode"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,784",
-                                    "created": 1755176320.7846577,
+                                    "asctime": "2025-08-15 19:13:35,623",
+                                    "created": 1755278015.6239676,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -14976,16 +14976,16 @@
                                     "lineno": 157,
                                     "message": "Providing property for 'unicode' from cache",
                                     "module": "__init__",
-                                    "msecs": 784.0,
+                                    "msecs": 623.0,
                                     "msg": "Providing property for '%s' from cache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8241.845659,
+                                    "relativeCreated": 8154.268402,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -14994,8 +14994,8 @@
                                         "'unicode'",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,784",
-                                    "created": 1755176320.7848246,
+                                    "asctime": "2025-08-15 19:13:35,624",
+                                    "created": 1755278015.6240284,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -15004,16 +15004,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=unicode): 'unicode' ()",
                                     "module": "test",
-                                    "msecs": 784.0,
+                                    "msecs": 624.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8242.012702,
+                                    "relativeCreated": 8154.329007,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -15023,8 +15023,8 @@
                                         "'unicode'",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,784",
-                                    "created": 1755176320.7849624,
+                                    "asctime": "2025-08-15 19:13:35,624",
+                                    "created": 1755278015.6240788,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -15033,39 +15033,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=unicode): result = 'unicode' ()",
                                     "module": "test",
-                                    "msecs": 784.0,
+                                    "msecs": 624.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8242.150522,
+                                    "relativeCreated": 8154.379526,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 785.0,
+                            "msecs": 624.0,
                             "msg": "Data from cached instance with key=unicode is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 8242.28532,
+                            "relativeCreated": 8154.428734,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.0001347064971923828
+                            "time_consumption": 4.935264587402344e-05
                         },
                         {
                             "args": [
                                 "17",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:40,785",
-                            "created": 1755176320.785997,
+                            "asctime": "2025-08-15 19:13:35,624",
+                            "created": 1755278015.624384,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -15079,8 +15079,8 @@
                                     "args": [
                                         "integer"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,785",
-                                    "created": 1755176320.7853408,
+                                    "asctime": "2025-08-15 19:13:35,624",
+                                    "created": 1755278015.624217,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -15089,16 +15089,16 @@
                                     "lineno": 157,
                                     "message": "Providing property for 'integer' from cache",
                                     "module": "__init__",
-                                    "msecs": 785.0,
+                                    "msecs": 624.0,
                                     "msg": "Providing property for '%s' from cache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8242.528792,
+                                    "relativeCreated": 8154.517705,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -15107,8 +15107,8 @@
                                         "17",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,785",
-                                    "created": 1755176320.785579,
+                                    "asctime": "2025-08-15 19:13:35,624",
+                                    "created": 1755278015.6242785,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -15117,16 +15117,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=integer): 17 ()",
                                     "module": "test",
-                                    "msecs": 785.0,
+                                    "msecs": 624.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8242.767117,
+                                    "relativeCreated": 8154.579205,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -15136,8 +15136,8 @@
                                         "17",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,785",
-                                    "created": 1755176320.7858045,
+                                    "asctime": "2025-08-15 19:13:35,624",
+                                    "created": 1755278015.6243336,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -15146,39 +15146,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=integer): result = 17 ()",
                                     "module": "test",
-                                    "msecs": 785.0,
+                                    "msecs": 624.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8242.99273,
+                                    "relativeCreated": 8154.634186,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 785.0,
+                            "msecs": 624.0,
                             "msg": "Data from cached instance with key=integer is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 8243.184899,
+                            "relativeCreated": 8154.684538,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.00019240379333496094
+                            "time_consumption": 5.030632019042969e-05
                         },
                         {
                             "args": [
                                 "3.14159",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:40,786",
-                            "created": 1755176320.786774,
+                            "asctime": "2025-08-15 19:13:35,624",
+                            "created": 1755278015.624641,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -15192,8 +15192,8 @@
                                     "args": [
                                         "float"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,786",
-                                    "created": 1755176320.7862375,
+                                    "asctime": "2025-08-15 19:13:35,624",
+                                    "created": 1755278015.6244695,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -15202,16 +15202,16 @@
                                     "lineno": 157,
                                     "message": "Providing property for 'float' from cache",
                                     "module": "__init__",
-                                    "msecs": 786.0,
+                                    "msecs": 624.0,
                                     "msg": "Providing property for '%s' from cache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8243.42565,
+                                    "relativeCreated": 8154.770099,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -15220,8 +15220,8 @@
                                         "3.14159",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,786",
-                                    "created": 1755176320.7864628,
+                                    "asctime": "2025-08-15 19:13:35,624",
+                                    "created": 1755278015.6245322,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -15230,16 +15230,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=float): 3.14159 ()",
                                     "module": "test",
-                                    "msecs": 786.0,
+                                    "msecs": 624.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8243.650797,
+                                    "relativeCreated": 8154.832855,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -15249,8 +15249,8 @@
                                         "3.14159",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,786",
-                                    "created": 1755176320.7866209,
+                                    "asctime": "2025-08-15 19:13:35,624",
+                                    "created": 1755278015.624588,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -15259,39 +15259,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=float): result = 3.14159 ()",
                                     "module": "test",
-                                    "msecs": 786.0,
+                                    "msecs": 624.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8243.809149,
+                                    "relativeCreated": 8154.888585,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 786.0,
+                            "msecs": 624.0,
                             "msg": "Data from cached instance with key=float is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 8243.962035,
+                            "relativeCreated": 8154.941602,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.00015306472778320312
+                            "time_consumption": 5.2928924560546875e-05
                         },
                         {
                             "args": [
                                 "[1, 'two', '3', 4]",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:40,787",
-                            "created": 1755176320.787682,
+                            "asctime": "2025-08-15 19:13:35,624",
+                            "created": 1755278015.624914,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -15305,8 +15305,8 @@
                                     "args": [
                                         "list"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,786",
-                                    "created": 1755176320.7869976,
+                                    "asctime": "2025-08-15 19:13:35,624",
+                                    "created": 1755278015.6247215,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -15315,16 +15315,16 @@
                                     "lineno": 157,
                                     "message": "Providing property for 'list' from cache",
                                     "module": "__init__",
-                                    "msecs": 786.0,
+                                    "msecs": 624.0,
                                     "msg": "Providing property for '%s' from cache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8244.185649,
+                                    "relativeCreated": 8155.022046,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -15333,8 +15333,8 @@
                                         "[ 1, 'two', '3', 4 ]",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,787",
-                                    "created": 1755176320.7871811,
+                                    "asctime": "2025-08-15 19:13:35,624",
+                                    "created": 1755278015.6247888,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -15343,16 +15343,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=list): [ 1, 'two', '3', 4 ] ()",
                                     "module": "test",
-                                    "msecs": 787.0,
+                                    "msecs": 624.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8244.369109,
+                                    "relativeCreated": 8155.08935,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -15362,8 +15362,8 @@
                                         "[ 1, 'two', '3', 4 ]",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,787",
-                                    "created": 1755176320.7873857,
+                                    "asctime": "2025-08-15 19:13:35,624",
+                                    "created": 1755278015.624846,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -15372,39 +15372,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=list): result = [ 1, 'two', '3', 4 ] ()",
                                     "module": "test",
-                                    "msecs": 787.0,
+                                    "msecs": 624.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8244.573694,
+                                    "relativeCreated": 8155.146561,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 787.0,
+                            "msecs": 624.0,
                             "msg": "Data from cached instance with key=list is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 8244.870213,
+                            "relativeCreated": 8155.214486,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.0002963542938232422
+                            "time_consumption": 6.794929504394531e-05
                         },
                         {
                             "args": [
                                 "{'1': 1, '2': 'two', '3': '3', '4': 4}",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:40,788",
-                            "created": 1755176320.788502,
+                            "asctime": "2025-08-15 19:13:35,625",
+                            "created": 1755278015.6252017,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -15418,8 +15418,8 @@
                                     "args": [
                                         "dict"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,787",
-                                    "created": 1755176320.787943,
+                                    "asctime": "2025-08-15 19:13:35,624",
+                                    "created": 1755278015.6249986,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -15428,16 +15428,16 @@
                                     "lineno": 157,
                                     "message": "Providing property for 'dict' from cache",
                                     "module": "__init__",
-                                    "msecs": 787.0,
+                                    "msecs": 624.0,
                                     "msg": "Providing property for '%s' from cache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8245.13103,
+                                    "relativeCreated": 8155.299301,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -15446,8 +15446,8 @@
                                         "{ '1': 1, '2': 'two', '3': '3', '4': 4 }",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,788",
-                                    "created": 1755176320.7881358,
+                                    "asctime": "2025-08-15 19:13:35,625",
+                                    "created": 1755278015.6250672,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -15456,16 +15456,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=dict): { '1': 1, '2': 'two', '3': '3', '4': 4 } ()",
                                     "module": "test",
-                                    "msecs": 788.0,
+                                    "msecs": 625.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8245.323721,
+                                    "relativeCreated": 8155.367989,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -15475,8 +15475,8 @@
                                         "{ '1': 1, '2': 'two', '3': '3', '4': 4 }",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,788",
-                                    "created": 1755176320.7883112,
+                                    "asctime": "2025-08-15 19:13:35,625",
+                                    "created": 1755278015.6251318,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -15485,39 +15485,39 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=dict): result = { '1': 1, '2': 'two', '3': '3', '4': 4 } ()",
                                     "module": "test",
-                                    "msecs": 788.0,
+                                    "msecs": 625.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8245.499409,
+                                    "relativeCreated": 8155.432397,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 788.0,
+                            "msecs": 625.0,
                             "msg": "Data from cached instance with key=dict is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 8245.689986,
+                            "relativeCreated": 8155.502325,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.00019073486328125
+                            "time_consumption": 6.985664367675781e-05
                         },
                         {
                             "args": [
                                 "'not None'",
                                 ""
                             ],
-                            "asctime": "2025-08-14 14:58:40,791",
-                            "created": 1755176320.7910795,
+                            "asctime": "2025-08-15 19:13:35,626",
+                            "created": 1755278015.6260273,
                             "exc_text": null,
                             "filename": "test.py",
                             "funcName": "equivalency_chk",
@@ -15531,8 +15531,8 @@
                                     "args": [
                                         "none"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,788",
-                                    "created": 1755176320.7887352,
+                                    "asctime": "2025-08-15 19:13:35,625",
+                                    "created": 1755278015.6252882,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -15541,24 +15541,24 @@
                                     "lineno": 157,
                                     "message": "Providing property for 'none' from cache",
                                     "module": "__init__",
-                                    "msecs": 788.0,
+                                    "msecs": 625.0,
                                     "msg": "Providing property for '%s' from cache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8245.923383,
+                                    "relativeCreated": 8155.5888,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "none"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,788",
-                                    "created": 1755176320.788918,
+                                    "asctime": "2025-08-15 19:13:35,625",
+                                    "created": 1755278015.6253457,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
@@ -15567,52 +15567,52 @@
                                     "lineno": 163,
                                     "message": "Loading property for key='none' from source instance",
                                     "module": "__init__",
-                                    "msecs": 788.0,
+                                    "msecs": 625.0,
                                     "msg": "Loading property for key='%s' from source instance",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8246.106154,
+                                    "relativeCreated": 8155.646422,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "none",
                                         "not None",
-                                        1755176320
+                                        1755278015
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,789",
-                                    "created": 1755176320.7891145,
+                                    "asctime": "2025-08-15 19:13:35,625",
+                                    "created": 1755278015.6253972,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "get",
                                     "levelname": "DEBUG",
                                     "levelno": 10,
                                     "lineno": 167,
-                                    "message": "Adding key=none, value=not None with timestamp=1755176320 to chache",
+                                    "message": "Adding key=none, value=not None with timestamp=1755278015 to chache",
                                     "module": "__init__",
-                                    "msecs": 789.0,
+                                    "msecs": 625.0,
                                     "msg": "Adding key=%s, value=%s with timestamp=%d to chache",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8246.302559,
+                                    "relativeCreated": 8155.69798,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
                                     "args": [
                                         "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json"
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,790",
-                                    "created": 1755176320.790287,
+                                    "asctime": "2025-08-15 19:13:35,625",
+                                    "created": 1755278015.6257656,
                                     "exc_text": null,
                                     "filename": "__init__.py",
                                     "funcName": "_save_only",
@@ -15621,16 +15621,16 @@
                                     "lineno": 301,
                                     "message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json)",
                                     "module": "__init__",
-                                    "msecs": 790.0,
+                                    "msecs": 625.0,
                                     "msg": "cache-file stored (%s)",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8247.475261,
+                                    "relativeCreated": 8156.066162,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -15639,8 +15639,8 @@
                                         "'not None'",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,790",
-                                    "created": 1755176320.790744,
+                                    "asctime": "2025-08-15 19:13:35,625",
+                                    "created": 1755278015.6259072,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_result__",
@@ -15649,16 +15649,16 @@
                                     "lineno": 22,
                                     "message": "Result (Data from cached instance with key=none): 'not None' ()",
                                     "module": "test",
-                                    "msecs": 790.0,
+                                    "msecs": 625.0,
                                     "msg": "Result (%s): %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8247.932236,
+                                    "relativeCreated": 8156.207842,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 },
                                 {
@@ -15668,8 +15668,8 @@
                                         "'not None'",
                                         ""
                                     ],
-                                    "asctime": "2025-08-14 14:58:40,790",
-                                    "created": 1755176320.7909272,
+                                    "asctime": "2025-08-15 19:13:35,625",
+                                    "created": 1755278015.625973,
                                     "exc_text": null,
                                     "filename": "test.py",
                                     "funcName": "__report_expectation__",
@@ -15678,43 +15678,43 @@
                                     "lineno": 26,
                                     "message": "Expectation (Data from cached instance with key=none): result = 'not None' ()",
                                     "module": "test",
-                                    "msecs": 790.0,
+                                    "msecs": 625.0,
                                     "msg": "Expectation (%s): result %s %s (%s)",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 8248.115131,
+                                    "relativeCreated": 8156.273725,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 791.0,
+                            "msecs": 626.0,
                             "msg": "Data from cached instance with key=none is correct (Content %s and Type is %s).",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 8248.267577,
+                            "relativeCreated": 8156.327996,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.00015234947204589844
+                            "time_consumption": 5.435943603515625e-05
                         }
                     ],
-                    "thread": 140229749231872,
+                    "thread": 140171799056640,
                     "threadName": "MainThread",
-                    "time_consumption": 0.011664152145385742,
-                    "time_finished": "2025-08-14 14:58:40,791",
-                    "time_start": "2025-08-14 14:58:40,779"
+                    "time_consumption": 0.004615306854248047,
+                    "time_finished": "2025-08-15 19:13:35,626",
+                    "time_start": "2025-08-15 19:13:35,621"
                 },
                 "REQ-0015": {
                     "args": null,
-                    "asctime": "2025-08-14 14:58:32,657",
-                    "created": 1755176312.6578312,
+                    "asctime": "2025-08-15 19:13:27,555",
+                    "created": 1755278007.5551012,
                     "exc_text": null,
                     "filename": "__init__.py",
                     "funcName": "testCase",
@@ -15724,20 +15724,20 @@
                     "message": "REQ-0015",
                     "module": "__init__",
                     "moduleLogger": [],
-                    "msecs": 657.0,
+                    "msecs": 555.0,
                     "msg": "REQ-0015",
                     "name": "__tLogger__",
                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/report/__init__.py",
-                    "process": 743412,
+                    "process": 1015645,
                     "processName": "MainProcess",
-                    "relativeCreated": 115.019363,
+                    "relativeCreated": 85.401685,
                     "stack_info": null,
                     "taskName": null,
                     "testcaseLogger": [
                         {
                             "args": [],
-                            "asctime": "2025-08-14 14:58:32,658",
-                            "created": 1755176312.658153,
+                            "asctime": "2025-08-15 19:13:27,555",
+                            "created": 1755278007.5552778,
                             "exc_text": null,
                             "filename": "test_helpers.py",
                             "funcName": "clean",
@@ -15749,8 +15749,8 @@
                             "moduleLogger": [
                                 {
                                     "args": [],
-                                    "asctime": "2025-08-14 14:58:32,658",
-                                    "created": 1755176312.6580238,
+                                    "asctime": "2025-08-15 19:13:27,555",
+                                    "created": 1755278007.555211,
                                     "exc_text": null,
                                     "filename": "test_helpers.py",
                                     "funcName": "clean",
@@ -15759,38 +15759,38 @@
                                     "lineno": 17,
                                     "message": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
                                     "module": "test_helpers",
-                                    "msecs": 658.0,
+                                    "msecs": 555.0,
                                     "msg": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
                                     "name": "__unittest__",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_helpers.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 115.212033,
+                                    "relativeCreated": 85.511716,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 658.0,
+                            "msecs": 555.0,
                             "msg": "Prepare: Cleanup before testcase execution",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_helpers.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 115.341125,
+                            "relativeCreated": 85.578448,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.00012922286987304688
+                            "time_consumption": 6.67572021484375e-05
                         },
                         {
                             "args": [
                                 "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_corrupt_cache.json"
                             ],
-                            "asctime": "2025-08-14 14:58:32,658",
-                            "created": 1755176312.6583135,
+                            "asctime": "2025-08-15 19:13:27,555",
+                            "created": 1755278007.5553463,
                             "exc_text": null,
                             "filename": "test_cached_data.py",
                             "funcName": "corrupt_cache",
@@ -15800,23 +15800,23 @@
                             "message": "Creating empty cache file /home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_corrupt_cache.json.",
                             "module": "test_cached_data",
                             "moduleLogger": [],
-                            "msecs": 658.0,
+                            "msecs": 555.0,
                             "msg": "Creating empty cache file %s.",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_cached_data.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 115.501636,
+                            "relativeCreated": 85.64684,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
                             "time_consumption": 0.0
                         },
                         {
                             "args": [],
-                            "asctime": "2025-08-14 14:58:32,662",
-                            "created": 1755176312.6623154,
+                            "asctime": "2025-08-15 19:13:27,558",
+                            "created": 1755278007.5583417,
                             "exc_text": null,
                             "filename": "test_cached_data.py",
                             "funcName": "corrupt_cache",
@@ -15830,8 +15830,8 @@
                                     "args": [
                                         "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_corrupt_cache.json"
                                     ],
-                                    "asctime": "2025-08-14 14:58:32,658",
-                                    "created": 1755176312.658628,
+                                    "asctime": "2025-08-15 19:13:27,555",
+                                    "created": 1755278007.5555604,
                                     "exc_text": "Traceback (most recent call last):\n  File \"/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py\", line 231, in _load_cache\n    self._load_only()\n    ~~~~~~~~~~~~~~~^^\n  File \"/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py\", line 295, in _load_only\n    self._cached_props = json.load(fh)\n                         ~~~~~~~~~^^^^\n  File \"/usr/lib/python3.13/json/__init__.py\", line 293, in load\n    return loads(fp.read(),\n        cls=cls, object_hook=object_hook,\n        parse_float=parse_float, parse_int=parse_int,\n        parse_constant=parse_constant, object_pairs_hook=object_pairs_hook, **kw)\n  File \"/usr/lib/python3.13/json/__init__.py\", line 346, in loads\n    return _default_decoder.decode(s)\n           ~~~~~~~~~~~~~~~~~~~~~~~^^^\n  File \"/usr/lib/python3.13/json/decoder.py\", line 345, in decode\n    obj, end = self.raw_decode(s, idx=_w(s, 0).end())\n               ~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^\n  File \"/usr/lib/python3.13/json/decoder.py\", line 363, in raw_decode\n    raise JSONDecodeError(\"Expecting value\", s, err.value) from None\njson.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)",
                                     "filename": "__init__.py",
                                     "funcName": "_load_cache",
@@ -15840,42 +15840,42 @@
                                     "lineno": 233,
                                     "message": "Exception while loading cache file /home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_corrupt_cache.json",
                                     "module": "__init__",
-                                    "msecs": 658.0,
+                                    "msecs": 555.0,
                                     "msg": "Exception while loading cache file %s",
                                     "name": "caching",
                                     "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
-                                    "process": 743412,
+                                    "process": 1015645,
                                     "processName": "MainProcess",
-                                    "relativeCreated": 115.816157,
+                                    "relativeCreated": 85.861058,
                                     "stack_info": null,
                                     "taskName": null,
-                                    "thread": 140229749231872,
+                                    "thread": 140171799056640,
                                     "threadName": "MainThread"
                                 }
                             ],
-                            "msecs": 662.0,
+                            "msecs": 558.0,
                             "msg": "Empty cache file ignored on loading cache.",
                             "name": "__tLogger__",
                             "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_cached_data.py",
-                            "process": 743412,
+                            "process": 1015645,
                             "processName": "MainProcess",
-                            "relativeCreated": 119.503362,
+                            "relativeCreated": 88.642238,
                             "stack_info": null,
                             "taskName": null,
-                            "thread": 140229749231872,
+                            "thread": 140171799056640,
                             "threadName": "MainThread",
-                            "time_consumption": 0.0036873817443847656
+                            "time_consumption": 0.002781391143798828
                         }
                     ],
-                    "thread": 140229749231872,
+                    "thread": 140171799056640,
                     "threadName": "MainThread",
-                    "time_consumption": 0.0044841766357421875,
-                    "time_finished": "2025-08-14 14:58:32,662",
-                    "time_start": "2025-08-14 14:58:32,657"
+                    "time_consumption": 0.0032405853271484375,
+                    "time_finished": "2025-08-15 19:13:27,558",
+                    "time_start": "2025-08-15 19:13:27,555"
                 }
             },
             "testrun_id": "p3",
-            "time_consumption": 8.171907424926758,
+            "time_consumption": 8.089805364608765,
             "uid_list_sorted": [
                 "REQ-0003",
                 "REQ-0001",
diff --git a/_testresults_/unittest.pdf b/_testresults_/unittest.pdf
index be88bb7..98d7bc6 100644
Binary files a/_testresults_/unittest.pdf and b/_testresults_/unittest.pdf differ