0
votes
0answers
203 views
Random crashes of Java VM in ConcurrentGCThread
We have problems with JVMs running internet applications under changing load. This problem comes and goes. One day we see three VMs dying and after that, there is nothing for a week or two. We have …
2
votes
1answer
599 views
Exclude code from code coverage with Cobertura
Is there a way to exclude code from inclusion into Cobertura coverage reports? We have some methods that should not be include in the coverage report and therefore not drive down the coverage numbe …
14
votes
What is a data structure kind of like a hash table, but infrequently-used keys are deleted?
You are looking for an LRUList/Map. Check out LinkedHashMap:
The removeEldestEntry(Map.Entry) method may be overridden to impose a policy for removing stale mappings automatically when new …
1
vote
Chosing a suitable table size for a Hash.
Let it grow. With this size, the automatic handling is fine. Other than that, 2 x size + 1 is a simple formula. Prime numbers are also kind of good, but as soon as your data set reaches a certain s …
3
votes
differences between 2 JUnit Assert classes
JUnit 3.X: junit.framework.Assert
JUnit 4.X: org.junit.Assert
Prefer the newest one, especially when running JDK5 and higher with annotation support.
…
0
votes
Inserting a node into a linked list in constant-time?
How about using code that is already there? LinkedHashMap, LinkedList, LinkedHashSet. You can also check out the code and learn from it.
…
0
votes
Unexpected multithreaded result
Just because it is fun... the result from a 8-core server class machine. AMD 2.7GHz Shanghai cpus
Creating workers
Starting workers
Computing sum 0 + ... + (100000000 - 1)
Computing …
2
votes
What is the best Java email validation method?
What do you want to validate? The email address?
The email address can only be checked for its format conformance. See the standard: …
1
vote
Java StringBuilder and Thread Safety
I am not sure if this code is needed, because Java picks the StringBuilder automatically I guess. If you do not have a performance problem, go with a + b.
In case of a performance need, try …
1
vote
Should I always make my java-code thread-safe, or for performance-reasons do it only when needed?
Just as a side remark: Synchronization != Thread-safety. Even so you might not concurrently modify data, but you might read it concurrently. So keep the Java Memory Model in mind where synchronizat …
1
vote
Performance of ThreadLocal variable
Offtopic: ThreadLocal tend to be a memory problem in server applications where threads live forever as worker threads. You might pile up data without even knowing it.
…
0
votes
Tips of coding java programs in multicore scenario
My tip: Understand the Java Memory Model (since JDK 5 and higher). Most people do not know, that synchronization, volatile, and final have an additional meaning beyond the normal multi-threading sc …
0
votes
Is this scenario suitable for WeakReferences ?
I am not sure if the WeakMap is the right thing here. If you do not hold strong references anywhere in your application, the data in the map will disappear nearly immediately, because nobody is ref …
0
votes
String indexed collection in Java
The map access does not do unboxing for the lookup, only the later access to the result makes it slow.
I suggest to introduce a small wrapper with a getter for the int, such as SimpleInt. I …
0
votes
Can using too many static variables cause a memory leak in Java?
If you have a static hashmap and you add data to it... the data will never disappear and you have a leak - in case you do not need the data anymore. If you need the data, it is not a leak, but a hu …
