5
votes
7answers
371 views
Object Pooling
What are the pro's and con's of maintaining a pool of frequently used objects and grab one from the pool instead of creating a new one. Something like string interning except that it will be possib …
5
votes
6answers
242 views
Explicit nulling
In what situations in java is explicit nulling useful. Does it in any way assist the garbage collector by making objects unreachable or something? Is it considered to be a good practice?
…
4
votes
2answers
236 views
Die you threadpoolexecutor
I have a java.util.concurrent.Execution service - a single threaded thread pool executor. I submit certain tasks to it. If the task throws an unchecked exception the thread dies but the service ens …
2
votes
3answers
224 views
Creating a Hard Link in java
Currently I use 'ln' command via Runtime.exec(). It works fine. The only problem is that in order to do this fork, we need twice the heap space of the application. My app …
0
votes
6answers
358 views
[java thread safety] Object visibility across threads
Hi,
I have a general doubt regarding publishing data and data changes across threads.
Consider for example the following class.
public class DataRace {
static int a = 0;
…
0
votes
2answers
93 views
Custom java serialization of message
Hi,
While writing a message on wire, I want to write down the number of bytes in the data followed by the data.
Message format:
{num of bytes in data}{data}
…
0
votes
Hidden features of Eclipse
One combination to rules them all.
CTL+SHFT+L
Get the list of all these "hidden" features.
…
