Database Actions Using Java 8 Stream Syntax Instead of SQL
Why should you need to use SQL when the same semantics can be derived directly from Java 8 streams? This article shows how the resemblance between streams and SQL commands can be used to gain ultra-fast access to data.
The Need for Speed: Access Existing Data 1000x Faster
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.
Ever wanted to quickly create a web application connected to your existing database or build a professional application with short time-to-market requirements? The Java Stream API has unleashed the possibility to write database queries in pure Java.
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
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
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
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
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
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
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
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
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
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.
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()
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