The concurrentdictionary tag has no wiki summary.
1
vote
2answers
124 views
Why is ConcurrentDictionary.AddOrUpdate method slow?
I am working on a thread safe multi valued dictionary. Internally this dictionary uses a Concurrent dictionary (.net 4.0) with a custom linklist as value. Same key items are added in the linklist. The ...
1
vote
2answers
49 views
Is ConcurrentDictionary, a “concurrent” version of SortedList?
I would like to understand the Computational Complexity of a ConcurrentDictionary vers SortedList (Which is O(logarithmic(n))), is a ConcurrentDictionary just a concurrent synchronized implementation ...
1
vote
3answers
165 views
ConcurrentDictionary<> performance at a single thread misunderstanding?
Related brief info:
AFAIK , The concurrent stack, queue, and bag classes are implemented internally with linked lists.
And I know that there is much less contention because each thread is ...
0
votes
0answers
18 views
ChangeNotification on ConcurrentDictionary
I'm currently using the ConcurrentDictionary as a central storage area among a group of monitors. Each monitor is responsible for keeping a value updated in the Dictionary. If the Dictionary changes ...
1
vote
2answers
80 views
c++ cli ConcurrentDictionary warning 4538
When I have this c++ cli code:
#pragma managed
ref class mcSessions: ConcurrentDictionary <String ^, mcSession^>
{ //<---- warning here
private:
static mcSessions ^g_Sessions;
...
1
vote
1answer
86 views
Is there anything like a ConcurrentSet in .Net?
I've used the ConcurrentDictionary in .Net and fell in love with how easy it is to write concurrent classes using it.
Now, I have a different scenario though. I basically need to keep track of a ...
0
votes
0answers
165 views
C# ConcurrentDictionary AddOrUpdate
I am confused about the AddOrUpdate method. The document specifically says that the updateValueFactory is not synchronized.
In the MSDN this example was given:
Parallel.For(0, 10000, i =>
{
...
0
votes
3answers
263 views
Will my code ever be hit? ConcurrentDictionary TryGetValue(..)
If i have a concurrent dictionary, and i try a TryGetValue, and i test if that fails i do stuff, but if it doesn't fail, and the out value retrieved from the TryGetValuefunction is equal to what is ...
0
votes
1answer
72 views
Aggregating/Merging a number of concurrent dictionaries
So I have a concurrent dictionary defined as such
ConcurrentDictionary<string, ConcurrentDictionary<string, ConcurrentDictionary<string, SomeObject>>>();
I know that seems a ...
1
vote
2answers
143 views
Create a Dictionary using Linq
How can I create a Dictionary (or even better, a ConcurrentDictionary) using Linq?
For example, if I have the following XML
<students>
<student name="fred" address="home" avg="70" />
...
1
vote
3answers
112 views
How should I “Cancel” an AddOrUpdate within ConcurrentDictionary?
I've read the MSDN documents and this blog and I need the following logic:
For a ConcurrentDictionary<string,bool>
If the string doesn't exist, add it,and make sure I set the bool to True ...
2
votes
1answer
107 views
Whats the risk of using TPL with ConcurrentDictionary with “addValueFactory”? MSDN implies threading issues
MSDN says the following about addValueFactory in a multi threaded environment:
Remarks
If you call AddOrUpdate simultaneously on different threads, addValueFactory may be called multiple ...
0
votes
0answers
120 views
ConcurrentDictionary.AddOrUpdate()
I am trying to use the AddOrUpdate() method in the ConcurrentDictionary class. I am having trouble
with the Update peice. The following is the code:
dictionary.AddOrUpdate(oid, pList, (o,p) =>
{
...
1
vote
1answer
206 views
Can Bounded BlockingCollections Lose Data During Adds
I have a BlockingCollection(ConcurrentBag, 50000) where I am trying to use a very small Bounded Capacity of 50,000 for the producer threads in order to maximize the number of records I can process in ...
1
vote
1answer
119 views
How should I implement the Func in AddOrUpdate() in this object: ConcurrentDictionary<int, List<MyObject>>
How do I implement AddorUpdate in ConcurrentDictionary so that I can correctly update the value, if that value is a collection?
My concern is that since TValue is a reference type I might run into ...
3
votes
2answers
157 views
Lock On Value of ConcurrentDictionary
Partition is a small class I created. I have thousands of partitions that reside in a ConcurrentDictionary named Partitions. Before serialization, I want to lock a specific partition, do some work ...
3
votes
1answer
330 views
A Better Way To Make My Parallel.ForEach Thread Safe?
I would like to make the following code thread-safe. Unfortunately, I have tried locking at various levels within this code with no success. The only instance I can seem to achieve thread-safety is to ...
0
votes
2answers
99 views
Extension method Gets “No overload for method” Error
I just recently upgraded this project from ASP.Net 3.5 to 4.0 so that I could use the concurrentDictionary instead of Dictionary because of the thread safe feature.
To use it I created an extension ...
4
votes
2answers
304 views
Why does ConcurrentDictionary.GetOrAdd(key, valueFactory) allow the valueFactory to be invoked twice?
I am using a concurrent dictionary as a thread-safe static cache and noticed the following behavior:
From the MSDN docs on GetOrAdd:
If you call GetOrAdd simultaneously on different threads,
...
0
votes
4answers
343 views
Getting a value from a ConcurrentDictionary
If I have this ConcurrentDictionary:
public class User
{
public string Context { get; set; }
public bool Owner { get; set; }
}
protected static ConcurrentDictionary<User, string> ...
1
vote
1answer
107 views
How to update a ConcurrentDictionary that exist in another ConcurrentDictionary?
I have a ConcurrentDictionary that named with Pr_Matrix:
ConcurrentDictionary<int, ConcurrentDictionary<int, float>> Pr_Matrix = new ConcurrentDictionary<int, ...
0
votes
3answers
176 views
Lock for ConcurrentDictionary when AddOrUpdate-ing?
I use a ConcurrentDictioanry<string, HashSet<string>> to access some data across many threads.
I read in this article (scroll down) that the method AddOrUpdate is not executed in the ...
1
vote
1answer
241 views
Items added to ConcurrentDictionary immediately go into a zombie state
I'm trying to throw together a quick little program using Alchemy Websockets which uses the ConcurrentDictionary collection in its examples.
In the code I wrote, I'm attempting to add a new client to ...
1
vote
2answers
312 views
getting argument exception in concurrent dictionary when sorting and displaying as it is being updated
I am getting a hard to reproduce error in the following program in which a number of threads update a concurrent dictionary in parallel and the main thread displays the state of the dictionary in ...
0
votes
1answer
127 views
ConcurrentDictionary->AddOrUpdate in VS C++
i am using Visual Studio 2010 C++ Express and i mant to add an item to my ConcurrentDictionary:
i have such code:
String^ key = gcnew String("key");
int value = 123;
...
7
votes
3answers
824 views
Can ConcurrentDictionary.TryAdd fail?
This is more of an academic question... but can ConcurrentDictionary.TryAdd fail? And if so in what cases and why?
0
votes
1answer
153 views
How to remove item from ConcurrentDictionary after final ContinueWith finishes
First, could someone with 1500+ "reputation" please create a tag for "ContinueWith" (and tag this question with it)? Thanks!
Sorry for the length of this post but I don't want to waste the time of ...
1
vote
2answers
508 views
How to wrap ConcurrentDictionary in BlockingCollection?
I try to implement a ConcurrentDictionary by wrapping it in a BlockingCollection but did not seem to be successful.
I understand that one variable declarations work with BlockingCollection such as ...
0
votes
2answers
142 views
How should I keep 2 ConcurrentDictionaries in sync?
I like the lock-free operation of the ConcurrentDictionary and use it in two objects:
ConcurrentDictionary<datetime,myObj> myIndexByDate
ConcurrentDictionary<myObjSummary, ...
1
vote
1answer
338 views
Defending against race conditions in System.Collections.Concurrent.ConcurrentDictionary
The .NET ConcurrentDictionary is susceptible to a race condition that may cause unexpected data as explained at the bottom of this MSDN article. I'm assuming that there are several factors to take ...
5
votes
3answers
1k views
Need an efficient in-memory cache that can process 4k to 7k lookups or writes per second
I have an efficient C# application that receives 80 bytes of data at a rate of 5k to 10k records per second on a multi threaded CPU.
I need to now set up a in memory-cache to detect and filter ...
1
vote
3answers
180 views
Extension methods on System.Collections.Concurrent collections are thread-safe?
There are several extension methods for example, on the ConcurrentDictionary class, because it implements the IEnumerable interface. Are these methods (for example First, Sum, Take, etc.) are ...
8
votes
2answers
602 views
some questions around the use of ConcurrentDictionary
I am currently writing a C# application. I am new to using a ConcurrentDictionary so have some questions around its thread safety. Firstly, this is my dictionary:
/// <summary>
/// A ...
0
votes
1answer
196 views
dapper.net, how to flush ConcurrentDictionary?
I am new to dapper and plan to use it on my new project. After reading it, seems like the only problem I might have is ConcurrentDictionary.
Dapper caches information about every query it runs, ...
1
vote
2answers
578 views
C# Concurrent Dictionary not saving my List<string> value between page loads
It's been a while since I've been this stumped. The crazy thing is, I've done this several times in other areas of my code, so it's almost complete copy and paste, but except this code isn't working ...
2
votes
2answers
902 views
How can I tell `ConcurrentDictionary.GetOrAdd` to not add a value?
I have several cases where I use ConcurrentDictionary<TKey, TValue> for caching of values, but often times I need to perform validation of the value to decide whether to add it to the cache ...
0
votes
1answer
156 views
entering and getting values from arrays in one ConcurrentDictionary with C#
Up to this moment I was using simple arrays to enter and get necessary information.
the first example is following:
// ===Example 1. Enter info ////
string[] testArr1 = null;
...
1
vote
2answers
591 views
ConcurrentDictionary AddOrUpdate by predicate
I have a ConcurrentDictionary. I use its AddOrUpdate method to manipulate its items.
My question is: is it possible to use AddOrUpdate's update parameter to contain an if statement? E.g. my ...
0
votes
1answer
55 views
ConcurrentDictionary and visibility
I have read that ConcurrentDictionary only locks when writing, so the reads are lock free.
http://blogs.msdn.com/b/pfxteam/archive/2010/01/08/9945809.aspx
reads on the dictionary are performed in a ...
1
vote
2answers
452 views
ConcurrentDictionary and Clear()-function. Making values export threadsafe without data-loss
Any ideas of making ConcurrentDictionary threadsafe in condition where values are exported to list ex, and after that dictionary is cleared. So that any other thread cannot add data between exporting ...
1
vote
1answer
1k views
Where is ConcurrentDictionary in Reactive Extensions .NET 3.5
My questions is simple. After heavy googling I have learned that I can use ConcurrentDictionary in .NET 3.5 projects using Reactive Extensions and System.Threading.dll version from its install ...
4
votes
1answer
298 views
ConcurrentDictionary - broken dictionary or bad code?
Alright, so I'm running into a strange little issue and frankly I'm out of ideas. I wanted to throw this out there to see if I'm missing something that I've done wrong, or if ConcurrentDictionary ...
0
votes
0answers
379 views
ConcurrentDictionary problem comparing
Today i was doing some tests with the ConcurrentDictionary and Dictionary:
class MyTest
{
public int Row { get; private set; }
public int Col { get; private set; }
public string Value { ...
1
vote
1answer
220 views
ConcurrentDictionary and Disjoint Sets of Keys
There are 3 threads. Each of them works (reads, writes) with its own set of dictionary keys. So keys are mutually exclusive for different threads. There are also multiple threads which only read data.
...
2
votes
3answers
919 views
Multiple thread access to a static object of a non-static class
By default non-static methods have their own instance of variables for each thread when accessed via multiple threads, thus rendering them thread safe if they do not include a public variable etc.
On ...
3
votes
4answers
2k views
How can I convert a ConcurrentDictionary to a Dictionary?
I have a ConcurrentDictionary object that i would like to set to a Dictionary object.
Casting between them is not allowed. So how do i do it?
41
votes
7answers
15k views
.NET - Dictionary locking vs. ConcurrentDictionary
I couldn't find enough information on ConcurrentDictionary types, so I thought I'd ask about it here.
Currently, I use a Dictionary to hold all users that is accessed constantly by multiple threads ...

