Sometime back I've written an article on Producer Consumer Example and how to handle read/write operation better way in Java. On the similar note, in this tutorial we will discuss something on Race Condition and Thread locking. If you have any of …
Memcached Java Client Tutorial using whalin.Memcached-Java-Client and googlecode.xmemcached Libraries
How to setup and beautify Jetpack subscription form on blog?
WordPress is one of the best blogging platform out there and it's likely that its popularity has continued to grow since then. Several key factors contribute to WordPress's widespread adoption and success: Jetpack is of the plugin we use on …
Read Article about How to setup and beautify Jetpack subscription form on blog? →
Efficiently Fetching and Processing Web (HTTP) Data in Java: A Comprehensive Guide
Java URL example: How to send HTTP request GET/POST in Java? bufferedReader.read() – Getting text from URL
How to Run a Program forever in Java? Keep running Main() Thread Continuously
Java is pretty amazing. With list of thousands of APIs and utilities you could create any types of tutorials. Today I had a scenario in which I needed to have my program running forever. Wanted to check upstart script in Ubuntu OS. I could …
Read Article about How to Run a Program forever in Java? Keep running Main() Thread Continuously →
Mastering Memory Management in Java: A Deep Dive into JVM Heap Utilization
Although Java provides automatic garbage collection, sometimes you will want to know how large the object heap is and how much of it is left. You can use this information, for example, to check your code for efficiency or to approximate how many more …
Read Article about Mastering Memory Management in Java: A Deep Dive into JVM Heap Utilization →
Understanding Java Annotations – Java @annotations Tutorial
How and where are Annotations used in Java? An annotation, in the Java computer programming language, is a special form of syntactic metadata that can be added to Java source code. Classes, methods, variables, parameters and packages may be …
Read Article about Understanding Java Annotations – Java @annotations Tutorial →