-
I have spotted that Dictionary and ConcurrentDictionary performance is really slow if those collections are created with StringComparer.CurrentCultureIgnoreCase.
I have verified it with .Net 4.6 ( …
-
How access to TypeTableName in Dapper.Contrib.Extensions.SqlMapperExtensions class using Reflection?
`private static readonly ConcurrentDictionary TypeTableName = new ConcurrentDictionary();`
N…
-
@petehurst created:
https://orchard.codeplex.com/workitem/18371
For consideration for Orchard Future Versions:
ConcurrentDictionary is used in a number of performance-critical core features to handl…
-
### Description
If exposing a `ConcurrentDictionary` readonly with `ReadOnlyDictionary` and using the `Keys` or `Values` property of the `ReadOnlyDictionary` it will not reflect any changes made to…
-
This is a request from an internal team to add support for serializing `ConcurrentDictionary`
Here is untested sample code that we could base support on:
```C#
[Serializer(typeof(ConcurrentDictio…
-
### What happened?
The ScannerService module seems to match emoji-characters-only series name to every other normal series name strings when reading information from Comicinfo.xml.
(By 'norma…
-
ConcurrentDictionary enables enumerating the dictionary while other threads are modifying it, making it very useful in a variety of scenarios. But its GetEnumerator allocates an enumerator object. W…
-
It would be very useful to have the ability to conditionally remove or update `ConcurrentDictionary` entry. It already has `AddOrUpdate`. Right now I can't use `ConcurrentDictionary` in ref counting s…
-
[Job](https://mihubot.xyz/runtime-utils/Ef0b-cRA) completed in 15 minutes 42 seconds.
### Diffs
Diffs
```
Found 334 files with textual diffs.
Summary of Code Size diffs:
(Lower is better)
Total…
-
`ConcurrentDictionary.GetOrAdd` exposes two overloads, both of which accept an argument (the key). Yet, this code compiles:
```C#
using System.Collections.Concurrent;
public static class LockProv…