Tagged Questions
1
vote
1answer
85 views
Hashmap stuck on get
I have a strange issue with HashMap.
There are multiple threads that accessing same hashmap (not threadsafe).
Sometime, the process gets stuck.
when I inspect the thread stack, i see many threads ...
-1
votes
1answer
76 views
C++ HashMap with multi-threading support [duplicate]
I have a need to use a HashMap/ HashTable implementation in C++ and i have the following requirements
1- When new data is being inserted in the hashmap the complete hashmap is not locked, and other ...
0
votes
0answers
97 views
Thread Server-Client ( HashMap+Sockets+MultiThreads)
I'm sorry if topic what is same like mine exist.
I'm sorry for me english too.
What is the problem ?.
I musst write MultiThread Server and I can't "synchronized" Thread from a Client.
I thoguht I ...
3
votes
1answer
108 views
Synchronized hashmap read-only access in Java
In Java, there are 3 threads that want to access (read-only) an immutable hashmap to do something. Is SynchronizedMap class below the fastest solution for that purpose? If not, then what would be ...
-4
votes
3answers
126 views
Why HashMap should not be used in multithreaded environment? [closed]
Why HashMap can't be used in a multithreaded environment?
0
votes
0answers
92 views
Access/Modification of Global hashmap and string inside the threads in Java
I wrote a program in java which is a reservation system for 3 medical clinics in quebec.
as an experimental project for myself.
clients connect to server through RMI (remote method invocation)
it ...
13
votes
3answers
277 views
HashMap and visibility
HashMap's javadoc states:
if the map is structurally modified at any time after the iterator is created, in any way except through the iterator's own remove method, the iterator will throw a ...
0
votes
3answers
293 views
Creating Synchronized static singleton Map in Java
I have enough knowledge on creating Synchronized static objects.
However for a Map (Collection) in Java,
I found default implementations in Java individually (one for Synchronized list and one for ...
1
vote
3answers
149 views
Hashmap updates not reflected between threads
I have a singleton class that contains a hahsmap, the hashmap is initialised as a class variable. This map is updated correctly because when i add and print the size it changed, but, when i call it ...
0
votes
0answers
113 views
Hashmap comparison issue on runtime in Thread
I'm having two hashmap on one hashmap. I'm looping through the data and in the loop comparing the other hashmap data. I'm facing the problem of data consistency if i use other hashmap to compare. ...
1
vote
4answers
206 views
ConcurrentModificationException when more then one users is operating on HashMap
I have a HashMap which stores ID and Name pair. For each entry of this map, conditionally, I am going to put it in another HashMap. At the end am going to do some operations with the second Map ...
0
votes
2answers
84 views
Facing Issue in Comparing two HashMap in synchronized method/function
static protected HashMap<String, String> secMapMulti = new HashMap<String, String>();
static protected HashMap<String, String> baMapMulti = new HashMap<String, String>();
...
0
votes
2answers
198 views
how to use Hashmap to filter data in multithreading to serve multiple clients
Sample data store in hashmap is as ,
e.g.
...
0
votes
2answers
108 views
communication between threads in threadpool
Assume I have one threadpool and each thread is running following method:
void runMe(HashMap myHash){
...
myHash.remove(keyToBeRemoved);
...
}
My question is; should not myHash be the same ...
0
votes
1answer
109 views
0
votes
3answers
525 views
HashMap iteration/removal getting java.util.ConcurrentModificationException
i have a HashMap of ClientSocket and Client Object.
i'm iterating throw them using for loop, but sometimes new lines are added to the hashmap and then i get the ...
2
votes
2answers
1k views
How to deep copy a hashmap when working with multiple threads
In my application I have two threads. Thread 1 is transferring data to Thread 2. After the data is transferred the data in thread 1 is cleared within thread 2. Thread 1 goes on its merry way placing ...
5
votes
4answers
2k views
unordered_map thread safety
I am changing a single thread program into multi thread using boost:thread library. The program uses unordered_map as a hasp_map for lookups. My question is..
At one time many threads will be ...
0
votes
2answers
171 views
Correct HashMap Synchronization
Let's say I have a HashMap declared as follows:
@GuardedBy("pendingRequests")
private final Map<UInt32, PendingRequest> pendingRequests = new HashMap<UInt32, PendingRequest>();
Access ...
1
vote
2answers
333 views
HashMap and JDK 7
Simple experiment has shown that JDK7 compiled HashMap<Integer, Integer> uses many threads when performing simple serial insert-find benchmark:
Insert million numbers.
Search for hundreds of ...
2
votes
8answers
539 views
Can Java HashMap create deadlocks?
I have a HashMap that many threads read and write to at the same time.
Can that cause a deadlock?
0
votes
1answer
96 views
How can the TCP socket creation class gets notified that one new peer is added to the registry?
I am implementing a P2P service. The idea is using UDP to search for peers and build it's own registry. And using TCP to do the real communication.
I want to create one more new TCP socket connection, ...
1
vote
4answers
1k views
c++ pthread - How to make map access threadsafe?
I have a map as member variable and multiple threads that access the map (read and write access). Now I have to ensure that only ONE thread have access to the map. But how do I dot that? What is the ...
1
vote
2answers
462 views
Is this lazy initialization pattern for objects in a hashmap thread-safe?
I want to avoid locking on read if possible. But this "feels" like double-checked locking, even though no partially initialized members are involved.
Is this a good construct?
private final ...
1
vote
2answers
162 views
Data Structure to use instead of hash_map
I want to make an array containing three wide character arrays such that one of them is the key.
"LPWCH,LPWCH,LPWCH" was not able to use the greater than/lesser than symbols since it thinks it is a ...
0
votes
1answer
1k views
loop through hash_map using iterator in multithreaded program
Linux GCC:
I have a hash_map H, and a function F that using an iterator to loop through H, the problem is that function F can be executed in multithreaded mode. I don't know why it's working not ...
2
votes
2answers
229 views
Can I get count from a hash_map while adding some items to it?
For both windows and linux:
In multi-threaded application, in case I do not care the very exactly when getting the count of a hash_map, then can I safely call {hash_map}.size() while still allow ...
3
votes
4answers
369 views
Java Concurrency and Add-Only HashMaps
I'm writing a program that makes extensive use of large HashMaps. It is multithreaded, so I've used read-write locks when accessing it. However, it has a special property that I'd like to exploit.
...
5
votes
4answers
2k views
Are there any drawbacks with ConcurrentHashMap?
I need a HashMap that is accessible from multiple threads.
There are two simple options, using a normal HashMap and synchronizing on it or using a ConcurrentHashMap.
Since ConcurrentHashMap does not ...
13
votes
3answers
10k views
Thread safe Hash Map?
I am writing an application which will return a HashMap to user. User will get reference to this MAP.
On the backend, I will be running some threads which will update the Map.
What I have done so ...
6
votes
6answers
677 views
Java: multi-threaded maps: how do the implementations compare?
I'm looking for a good hash map implementation. Specifically, one that's good for creating a large number of maps, most of them small. So memory is an issue. It should be thread-safe (though losing ...
16
votes
4answers
6k views
Is a HashMap thread-safe for different keys?
If I have two multiple threads accessing a HashMap, but guarantee that they'll never be accessing the same key at the same time, could that still lead to a race condition?
14
votes
8answers
13k views
Are final static variables thread safe in Java?
I've read around quite a bit but haven't found a definitive answer.
I have a class that looks like this:
public class Foo() {
private static final HashMap<String, HashMap> ...
4
votes
5answers
5k views
Hashmap and hashtable in multithreaded environment
I am really confused on how these 2 collections behave in multithreaded environment.
Hash table is synchronized that means no 2 threads will be updating its value simultaneously right?
3
votes
7answers
3k views
Threading issues in a Java HashMap
Something happened that I'm not sure should be possible. Obviously it is, because I've seen it, but I need to find the root cause & I was hoping you all could help.
We have a system that looks ...
37
votes
9answers
12k views
Is it safe to get values from a java.util.HashMap from multiple threads (no modification)?
There is a case where a map will be constructed, and once it is initialized, it will never be modified again. It will however, be accessed (via get(key) only) from multiple threads. Is it safe to ...

