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
Damit LoggingContext auch in Child threads verwendet wird. wird anstatt des ThreadLocals InheritableThreadLocal verwendet.
Im Child wird dann die gleiche Map verwendet.
Leider ist es nicht ganz so einfach. Innerhalb der child threads werden auch schreiboperationen an das Parent weitergeleitet. Die Map ist jedoch derzeit nicht synchronisiert.
Daher wird eine Art copy on write benötigt.
Damit LoggingContext auch in Child threads verwendet wird. wird anstatt des ThreadLocals InheritableThreadLocal verwendet.
Im Child wird dann die gleiche Map verwendet.
Leider ist es nicht ganz so einfach. Innerhalb der child threads werden auch schreiboperationen an das Parent weitergeleitet. Die Map ist jedoch derzeit nicht synchronisiert.
Daher wird eine Art copy on write benötigt.
The text was updated successfully, but these errors were encountered: