ActiveJDBC is lazy by default. In this sense, it has semantics closer to ActiveRecord than Hibernate.

Lazy List

In a code like this:

the list users is a type of LazyList.

Despite what it looks, the line 1. is not when the framework makes a call to the database. Only when the objects are queried from loop on line 2, the framework pulls data from the database.

In fact, in this example:

there is no access to database. All that is happening is that the LazyList is progressively configured on lines 2, 3 and 4 in order to build a correct SQL query when the objects are requested from the list.

Lazy dependencies

If you have a model User and a model Address, and they have a one to many relationship, when a user has many addresses, the code:

does not load the associated addresses. Only when you call the getter for addresses, a query is generated and executed against DB:

In the example above, the collection of addresses is not cached in the User model, and a query is executed against a DB as many times as this getter is called.

ActiveJDBC uses a pass-through model. It means that the models do not cache relationships. Even after a call to get related objects the parent model does not retain a reference to them.

Improve efficiency with eager loading

Let's consider an example where an ORM could unexpectedly generate a huge number of inefficient queries:

In the above example, the number of queries generated and executed is going to be N + 1, were N is a number of addresses. This is because the first query is to get all addresses, and then for each address, there is a new query to get a user parent (line 4).

This approach is going to kill performance in some applications. A better way is to load all parents at once by a single query:

ActiveJDBC will then issue two queries: one to get all Addresses and the other to get all corresponding Users for each address.

The same logic can be applied to all relationships going up and down: one-to-many, many-to-one and many-to-many.

Relationships that were loaded by include() are cached and will be returned each time (without further access to DB) when the same getter is used!

Eager simultaneous loading of parents and children

Suppose we have two one to many relationships: Author has many Posts and a Post has many Comments. In cases like these, we can load a post and all corresponding Authors and Comments very efficiently:

The above code will generate only three queries to DB, one per each table. This of course will create an object graph in memory with certain implications. While it is going to be a more efficient approach from the point of DB IO view, it certainly will consume more memory. Developers will need to understand the implications and perform test cases to see if eager loading is improving or degrading performance.

Conversion to Maps

When a model with included children is converted to a map, all the dependencies are converted to maps and inserted into a parent model map too. Here is an example:

In the example above, on line 1 a list of users is requested from a DB, and this list is to include corresponding addresses for each user. So far, this is the same as previous examples. However, on line 2 the users are converted to a list of maps. When this happens, each map that was generated from a user model also contains a list of maps each representing an address as a child of that user. What is more, is that the list of addresses is keyed from a user map by a string addresses as evident on line 6. The key in each case like this is an interpolation of a name of a child model to plural form according to the rules of the English language, which resulted in addresses in this case.

The same logic applies to many-to-one and many-to-many relationships.

Pre-loading data into a list

In some cases, you will need to force loading of data. One example, is when you are passing a list of models to another thread. Consider this code:

As mentioned above, there was no access to the database. However, when you call any method of this class that requires any data from the database, the List will make a call to the underlying table to get the data.

This means, that if you just create a list like this and pass it off to another thread, and if that thread does not have a database connection attached to it, the list will not be able to load data and will throw exception complaining that a database connection was not found on this thread.

In order to pre-populate the list before passing it off, you need to call any method that will force loading (hydrating) of the list from the database. Example:

Even if you do not use the result of the method size(), it will load data into the list. Any successive calls to the list will bring cached (in the list) results.


How to comment

The comment section below is to discuss documentation on this page.

If you have an issue, or discover bug, please follow instructions on the Support page