Tagged Questions
The Trove library provides high speed regular and primitive collections for Java.
4
votes
6answers
159 views
What is the name of this locking technique?
I've got a gigantic Trove map and a method that I need to call very often from multiple threads. Most of the time this method shall return true. The threads are doing heavy number crunching and I ...
4
votes
7answers
429 views
Why not allow an external interface to override hashCode/equals for a HashMap?
With a TreeMap it's trivial to bypass the keys' natural ordering using a Comparable.
HashMaps however cannot be controlled in this manner.
I suspect it would be both easy and useful to design an ...
1
vote
1answer
76 views
Is Trove library Threadsafe?
Is GNU trove libraray threadsafe. I am particularly interestd in TObjectDoubleHashMap. I looked at their documentation, but it hasn't mentioned anything, so shall we assume it is not threadsafe.
1
vote
2answers
166 views
Custom implementation of a HashTable in Java?
I was solving the Quora problem and for my particular solution I needed a hashtable (long-keys, int-values) for caching values. I hoped that the Java HashMap could be improved because I knew my data ...
0
votes
1answer
170 views
How to return an unmodifiable view of a Java Trove collection?
I'd like to put unmodifiable wrappers around some of the Trove collections: I've checked the Trove documentation and I cannot seem to find an easy way to do it (I may have overlooked something ...