Search Results

0
votes

Java operator overload

Why is it that you think the version with overloading is more reasonable? How often do programmers need to implement new fundamental integer data types? Can you think of an example …
1
vote

JDK/JRE source code with matching JSSE (SSL) source code and matching runnable JDK / JRE?

The Sun implementation is not open source as far as I know. You can download an open source JCE here: http://www.bouncycastle …
0
votes

Java memory consumption, “top” and HP-Ux

The JVMs might just have different default parameters. The heap will grow to the size that you have configured to let it. The default on the Sun VM is a certain percentage of the RAM in the machi …
0
votes

Distributed Concurrency Control

If you can set up your load balancing so that requests for a single customer always get mapped to the same server then you can handle this via local synchronization. For example, take your custome …