article thumbnail

Framework Benchmarks Round 22

TechEmpower

btw: xitca-web (bench code not including dependencies) does not do 2,3,5 and still remains competitive in micro bench can be used as a reference. Context and use case determines how you optimize your code. synopse I have written a blog post about TFB and object pascal - yes, we added our object pascal framework in round 22!

Framework 409
article thumbnail

Everything about Java 8

TechEmpower

The following post is a comprehensive summary of the developer-facing changes coming in Java 8. At the time of this writing, Java 8 development is still very much in progress. It had the best support for the Java 8 language features at the time I went looking. Language features and APIs may still change.

Java 560
article thumbnail

EnumSet and EnumMap

TechEmpower

from Java's standard libraries. private static E [] getUniverse ( Class elementType ) {. There is a single backing array instance of those Month constants living in memory somewhere ( a private field in the Class object for Month ), but it wouldn't be safe to pass that array directly to every caller of values(). What are they?

Java 330