This pull request includes updates to the documentation to clarify the behavior of the GetOrDefault method when using the SetAutoClone option in the FusionCache library.
Documentation improvements:
docs/AutoClone.md: Updated comments to clarify that using SetAutoClone(true) returns a clone of the cached instance, and modifications affect only the clone, while not using SetAutoClone returns a direct reference to the cached instance, and modifications affect the cache.
This pull request includes updates to the documentation to clarify the behavior of the
GetOrDefault
method when using theSetAutoClone
option in theFusionCache
library.Documentation improvements:
docs/AutoClone.md
: Updated comments to clarify that usingSetAutoClone(true)
returns a clone of the cached instance, and modifications affect only the clone, while not usingSetAutoClone
returns a direct reference to the cached instance, and modifications affect the cache.