You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is an internal read cache that is used to temporarily store the all the already read values as the reader advances to the next tokens inside the file stream (text buffer). This is called the ReadCache and it is reset whenever the serializer reaches the beginning of the next segment.
The current design introduces the following problem: Although the sole purpose of the readcache is to help serializer make search operations (for conditional deserialization) without loosing any values, a loss may occur because we are advancing the reader and not being able to check the contents of the cache. This is exactly what seems to be happening with multiple condition attributes.
The text was updated successfully, but these errors were encountered:
results to the correct creating of containers but null property values for FieldAFieldBFieldC because of Condition.PathIMD/1/0 paths IMD/0/0 and IMD/1/0 won't map.
There is an internal read cache that is used to temporarily store the all the already read values as the reader advances to the next tokens inside the file stream (text buffer). This is called the
ReadCache
and it is reset whenever the serializer reaches the beginning of the next segment.The current design introduces the following problem: Although the sole purpose of the
readcache
is to help serializer make search operations (for conditional deserialization) without loosing any values, a loss may occur because we are advancing the reader and not being able to check the contents of the cache. This is exactly what seems to be happening with multiple condition attributes.The text was updated successfully, but these errors were encountered: