Articles


Written by Per Minborg

TransactionsIn my previous post, I wrote about how to use Transactions in an easy way using Speedment where we updated two bank accounts atomically. As you all might know, transactions
Read Article
Written by Per Minborg

TransactionsSometimes we want to make sure that our database operations are executed atomically and separated from other operations. This is where transactions come into play. A transaction is a set
Read Article
Written by Per Minborg

Learn how you can speed up your analytics database applications by a factor of 1,000 by using standard Java 8 streams and Speedment’s In-JVM-Memory accelerator.Web and mobile applications are sometimes
Read Article
Written by Per Minborg

Learn how to pick the right method parameter types and get more robust and shorter code in your Java applications.We Java developers generally have a bad habit of using method
Read Article
Written by Per Minborg

Day 25, Java Holiday Calendar 2016, The Complete DeckThank you all for following this year's Java Calendar. Here is the complete list with all the articles:1: Use the @FunctionalInterface AnnotationIf
Read Article
Written by Per Minborg

Day 24, Java Holiday Calendar 2016, How many Santas are there - Really?Today we are going to do some nonsense calculations. Is there a Santa and if yes, how many
Read Article
Written by Per Minborg

Day 23, Java Holiday Calendar 2016, Use Mappable Types Instead of Bloated OnesToday's tips is about mappable types. Traditionally we Java developer have relied on inheritance and types with a
Read Article
Written by Per Minborg

Day 22, Java Holiday Calendar 2016, Use Enums as Method ParametersToday's tips is about using Enums as parameters to indicate method behavior. Let us here the fairy tail of Prince
Read Article
Written by Per Minborg

Day 21, Java Holiday Calendar 2016, Concatenate Java StreamsToday's tip is about concatenating streams. The task of the day is to construct a concatenated stream that lazily consumes a number
Read Article
Written by Per Minborg

Day 20, Java Holiday Calendar 2016, Breakout of the Java HeapToday's tip is about storing things off heap. As we all know, Java will occasionally clean up the heap (i.e.
Read Article
Written by Per Minborg

Day 19, Java Holiday Calendar 2016, Speed up Your EnumsToday's tips is about Enum performance. A large number of Java programmers think Enums have a very fast method called .values()
Read Article
Written by Per Minborg

Day 18, Easily Create Database ContentToday's tips is about creating database content. There are a number of ways to do this, ranging from writing our own entity beans combined with
Read Article