-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(cache): switched to concurrent cache #1609
base: v4
Are you sure you want to change the base?
Conversation
@@ -1,11 +1,18 @@ | |||
using System; | |||
using System.Collections.Generic; | |||
using System.Linq; | |||
using System.Threading; | |||
|
|||
#if !NET35 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LiteDB doesn't support NET35, so these conditions could be removed here and below.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this fixes v4 which targets 3.5
And it looks like lock in ClearPages is not needed anymore, because ConcurrentDicrionary has lock inside Clear() https://github.com/dotnet/runtime/blob/master/src/libraries/System.Collections.Concurrent/src/System/Collections/Concurrent/ConcurrentDictionary.cs#L590 |
@mbdavid any chance we get a bugfix release for 4.x with this issue resolved? |
fixes #1416