The concurrenthashmap tag has no wiki summary.
0
votes
4answers
52 views
producer consumer pattern with concurrenthashmap in java
I have the following problem, and I am not sure how to design parts of the solution:
I have a large text file that I read line by line.
I need to process each line and update a HashMap.
AFAIK I need ...
1
vote
2answers
39 views
ConcurrentHashMap retrieval operation does not take lock?
as per Java docs
Retrieval operations (including get) generally do not block, so may overlap with update
operations (including put and remove). Retrievals reflect the results of the most ...
0
votes
3answers
73 views
Concurrent Cache in Java
Im looking for an explanation to the following code from Brian Goetz's concurrency book.
public V compute(final A arg) throws InterruptedException {
while (true) {
Future<V> f = ...
0
votes
0answers
27 views
What does segmentMask mean in java ConcurrentHashMap
I think that
(hash >>> segmentShift) & segmentMask
equals
(hash >>> segmentShift)
for example,
ssize is 16, sshift is 4, so segmentShift is 28, segmentMask is 15
hash ...
0
votes
1answer
14 views
is that thread safe to update entry.value.field directly in ConcurrentHashMap?
Sometimes, we need to update one field of entry.value.
the thread safe way to do that is construct a new entry.value and
use put method to update. that is said, I need to make deep copy
of original ...
1
vote
2answers
105 views
Force to clear memory
I am running into some memory issues with my project, so I decided to stress test some portions to see some performance measurements. I am using Google's ConcurrentLinkedHashMap library as an LRU ...
0
votes
1answer
78 views
Clojure Equivalent of Java ConcurrentHashMap using atom map
Inspired by this blog post on Event Sourcing, I am wondering if it is possible to implement a Clojure structure equivalent of a Java ConcurrentHashMap. Basis this
post by Rich to the Clojure maling ...
2
votes
3answers
68 views
Update the ConcurrentHashMap in a thread safe way
I am in the process of benchmarking few methods in my client code to see how much time those methods are taking. So I have written a Multithreading program which will spawn Multiple threads and then I ...
2
votes
1answer
38 views
ConcurrentHashMap.clear() What will happen to read threads?
We were maintaining the cache using ConcurrentHashMap
Often times the cache needs to be refreshed What is the bestway to refresh the cache?
1.Update the cache , Remove all stale keys.
2.Clear the ...
3
votes
2answers
93 views
Least value concurrent map
I require an implementation of a map,
that supports concurrency, and only stores the least/most value added (depending on the comparator).
Would the following code work?
class ...
1
vote
2answers
45 views
Hash map with concurrent values (in C++)
I have a hash map, from a string key to a pointer to a thread-safe class. Each object of this class contains a mutex which I use to synchronize between its various methods.
In addition, every once in ...
0
votes
2answers
54 views
Need simple explanation how “lock striping” works with ConcurrentHashMap
according to Java Concurrency in Practice, chapter 11.3.4 says:
Lock splitting can sometimes be extended to partition
locking on a variablesized set of independent objects, in which case
it is ...
0
votes
2answers
77 views
How can I calculate percentile in java without using any other library
I am trying to calculate 95th Percentile from the data sets which I have populated in my below ConcurrentHashMap.
I am interested in finding out how many calls came back in 95th percentile of time
...
1
vote
1answer
48 views
concurrenthashmap read and write lock
I am trying to find answer to these, but not able to find it on google or java docs
Case 1 : in Concurrenthashmap, suppose a thread t1 is reading from segment n, and at same another thread t2
want ...
0
votes
1answer
47 views
TBB concurrent_hash_map operator[] or similar access?
Is there a reason why you can't access the concurrent_hash_map using the square bracket operators?
I've been doing this in order to ease the code readability (on keys that should be in the map):
...
2
votes
2answers
63 views
incrementAndGet method of AtomicLong is blocking call?
I am working on Multithreaded code from which I am trying to measure how much time a particular method is taking as I am trying to benchmark most of our teammate codes as I am doing Load and ...
0
votes
2answers
39 views
Modifying values in ConcurrentHashMap
In ConcurrentHashMap there is concept of segmentation. What it means if two threads are trying to access ConcurrentHashMap they it gets divided in two blocks and default size of blocks is 16.
Now ...
2
votes
3answers
88 views
facts about Concurrenthashmap
I have read a couple of statements on ConcurrentHashmap from varied sources and wanted to verify if they are indeed so.
After the iterator for a ConcurrentHashmap is created, ONLY the removal and ...
0
votes
0answers
22 views
HashMap and ConcurrentHashMap interal working
I got somewhat confused on my understanding, when the below things asked to me in an interview:
1)ConcurrentHashMap : As per my understanding, there is no lock to get values(corresponding to a key) ...
2
votes
1answer
73 views
Segmentation in ConcurrentHashMap
I am a newbie to the world of Java and I was exploring the ConcurrentHashMap API in which I discovered this:
static final int DEFAULT_INITIAL_CAPACITY = 16;
static final float DEFAULT_LOAD_FACTOR ...
0
votes
3answers
64 views
concurrent hashMap putIfAbsent method functionality
I am a new bie to the world of java and exploring the concurrent hash map, while exploring the concurrent hashmap API , I discover the putifAbsent() method
public V putIfAbsent(K paramK, V paramV)
...
0
votes
0answers
29 views
Regarding concurrent hashMap segmentation and indidivual locking
I was exploring the concurrenthashMap API and found static final int DEFAULT_CONCURRENCY_LEVEL = 16; which states that map will be divided in 16 parts internally, Now my query is that as we know that ...
0
votes
2answers
51 views
Synchronizing on an id with removal
I need to ensure that multiple threads aren't trying to access the same resource at the same time. I have a bunch of these resources, so I want to have a separate lock object for each resource ...
2
votes
2answers
67 views
Java - going through a hash map [duplicate]
I am in the process of updating some old Java code I havent touched in a while and have a quick question about the following code snippet:
private Map<String, Example> examples = new ...
5
votes
1answer
145 views
ConcurrentHashMap with weak keys and identity hash?
How do I get a ConcurrentHashMap with weak keys and identity hashes in Java? I think Google Guava Collections can give such a thing, but can I get it from the standard library? What other options do I ...
0
votes
0answers
57 views
Trying to measure how much time an insert takes in a database
I have a Multithreaded program which will insert into one of my table and that program I am running like this-
java -jar CannedTest.jar 100 10000
which means:
Number of threads is 100
Number ...
1
vote
1answer
52 views
ConcurrentHashMap Locks increase
As entries increase in the ConcurrentHashMap, rehashing will be done and new hash buckets will be formed (16 to 32).
Q: Will the locks(initially 16) will also increase(to 32) or 16 locks will look on ...
0
votes
1answer
101 views
Any concurrent maps with better performance than ConcurrentHashMap?
I understand that ConcurrentHashMap implements the backing table as multiple segment arrays rather than a single array to improve concurrent access performance. Are there any other Map ...
2
votes
2answers
176 views
Regarding internal working of concurrent hashmap
I was going through the ConcurrentHashMap and this related tutorial, and had some questions.
In the article, it was mention that ConcurrentHashMap allows multiple readers to read concurrently ...
2
votes
3answers
78 views
Removing Values from ConcurrentHashMap Properly
I am making a simple client server program that allows users to connect, change their name, and move into rooms to chat. The server periodically sends heartbeat signals to each client if they have not ...
0
votes
4answers
161 views
Using ConcurrentHashMap, when is synchronizing necessary?
I have a ConcurrentHashMap where i do the following:
sequences = new ConcurrentHashMap<Class<?>, AtomicLong>();
if(!sequences.containsKey(table)) {
synchronized (sequences) {
...
0
votes
0answers
117 views
Thread Safety issues of ConcurrentHashMap while trying to retrieve from it
I am trying to make a new connection for each database with different JDBC URL's within a single thread.
In my below snippet, tableNames is the map which will contain name of tables and there ...
0
votes
3answers
64 views
Retrieve values from the Map using the index
I have a map something like this-
ConcurrentHashMap<String, ConcurrentHashMap<String, String>> tableList
which will have data like this-
Sample Example-
...
2
votes
1answer
98 views
Make a different connection to different database and put it into the list
I am trying to make a separate connection for each database as JDBC URL's are different for them and store those different connections in an Array.
In my below code, tableList is the map which will ...
0
votes
2answers
56 views
Putting values into Map of Map
I am trying to read from the Command Line in java.
Suppose if I am passing these parameters from the command line-
TABLE1 TABLE2 TABLE3
Then after reading from the command prompt, tableNames list ...
2
votes
2answers
80 views
Counting the number of exceptions happening in catch block
I am trying to collect all the counts of exception happening and the name of exception in a ConcurrentHashMap so that I should be aware of how many times this exception has occurred.
So in my catch ...
1
vote
1answer
64 views
Lock free solution while updating the map and reading it
I am trying to measure how much time each thread takes in inserting to database. I have captured all those performance numbers in a ConcurrentHashMap named histogram like how much time each thread is ...
5
votes
5answers
154 views
Split the numbers in a different range
I am trying to measure how much time each thread takes in inserting to database. I have captured all those performance numbers in a ConcurrentHashMap named map like how much time each thread is taking ...
2
votes
2answers
200 views
how to make histogram of performance numbers
I am trying to measure the performance of Database Insert. I have captured all those performance numbers in a ConcurrentHashMap. I am trying to make a Histogram of those numbers.
In that concurrent ...
2
votes
1answer
139 views
Is there a thread-safe and element-unique queue in java?
Like a hybrid of "ConcurrentHashMap" and "ConcurrentLinkedQueue".
Here is my requirements:
I need a asynchronous updated cache system. That means I wrap every entity before set it into memcache. ...
1
vote
4answers
120 views
Java: is using synchronized(this) an advisable practice when creating a ConcurrentHashMap object?
I just finished developing a java web service server for a distributed programming course I am attending. One of the requirements was to guarantee multi-thread safety to our project hence I decided to ...
0
votes
2answers
138 views
How safe is to delete already removed ConcurrentHashMap element?
In case of following code, run by multiple threads:
private static final Map<String, keyinfo> mapKeys = new ConcurrentHashMap<String, keyinfo>();
private static void purgeOldKeys() {
...
0
votes
0answers
66 views
ConcurrentHashMap Synchronization
I have read though in HashTable the whole object is locked but in ConcurrencyHashMap it divide whole Map into different partition based upon Concurrency level and only locking particular portion ...
-1
votes
1answer
89 views
ConcurrentHashMap and threads
ConcurrentHashMap allow conurrent modification of the Map elements from several threads without the need to block them but HashMap block the whole HashMap object and not elements of it as in ...
4
votes
6answers
439 views
ThreadLocal HashMap vs ConcurrentHashMap for thread-safe unbound caches
I'm creating a memoization cache with the following characteristics:
a cache miss will result in computing and storing an entry
this computation is very expensive
this computation is idempotent
...
1
vote
3answers
237 views
ConcurrentHashMap returns a weakly consistent iterator, why should we use it anyhow?
I am reading the book Java Concurrecny in practice. On page 85 section 5.2.1 it talks about the ConcurrentHashMap and its advantages. However, in one part, the books claims that
the iterators ...
-1
votes
1answer
112 views
ConcurrentHashMap with complicated objects
I've taken some concurrent LRU cache implementation from the web, they have there HashMap and synchronized blocks. What I want is to use ConcurrentHashMap and avoid (where posible) using synchronized ...
5
votes
1answer
216 views
How does ConcurrentHashMap handle rehashing?
I am wondering how does ConcurrentHashMap handle rehashing while another thread is still writing on another segment/partition. As far as I understand that ConcurrentHashMap locks the segment ...
0
votes
1answer
139 views
C++ concurrent_unordered_map C++11 Microsoft Using unsigned long as key / HASH Function
I'm using Visual Studio 2012 in Windows 7 64 bit.
I need to use concurrent data structures because I will be using threads. I found that microsoft has a few ...
3
votes
2answers
124 views
Why get method in ConcurrentHashMap is blocking?
I have a question on ConcurrentHashMap in java. It internally calls readValueUnderLock. Why locking is required in case of get operation. And in which case this condition will be true
...