Use of ReaderWriterLockSlim #319
Unanswered
fredericoregateiro
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I'm learning TCP and this project has helped me a lot, thanks for sharing this project.
I have 1 quertion regarding the usage of
ReaderWriterLockSlim
inClientMetadataManager
, this class uses severalDictionary<Guid, DateTime>
to keep track of the clients and is there any reason to not use the built inConcurrentDictionary<TKey, TValue>
instead of bothReaderWriterLockSlim
andDictionary<TKey, TValue>
?Thanks
Beta Was this translation helpful? Give feedback.
All reactions