Spring - CGLIB: High performance code generation library
Spring is heavily using the CGLIB for it's framework implementation. CGLib is high performance code generation library. It is using to extend JAVA classes an...
Spring is heavily using the CGLIB for it's framework implementation. CGLib is high performance code generation library. It is using to extend JAVA classes an...
As modern CPU shared memory architecture, false sharing is the major performance bottleneck on multi-thread application. False sharing is caused by sharing t...
The following blog explain how Cassandra has been improved the column oriented row. https://www.datastax.com/dev/blog/cql3-for-cassandra-experts
Create service for multiple name providers 1 2 3 4 5 6 7 8 9 10 11 interface NameProvider { String name(); } @Service public class SomeName implement Nam...
Java will guarantee that all thread will see correct values of final fields that were set by the constructor, regardless of how object is published.