Caching is an integral part of every major system, It improves performance, reduces IO and makes overall user experience more pleasurable. Caching in ActiveJDBC works on the level of query and creation of model instances. For instance, the call:

might call into DB, or a result can come from cache, depending how cache and specifically model Library was configured

Cache annotation

ActiveJDBC provides annotation to specify queries against which tables will be cached:

As in other cases, this is a declaration that marks a model as cachable. If you enable logging (by providing a system property activejdbc.log), you will see extensive output from ActiveJDBC, similar to this:

Cache Configuration

The cache configuration includes providing a cache manager class name in the file activejdbc.properties. This file will have to be on the root of classpath. Here is one example:

#inside file: activejdbc.properties
#or EHCache:
cache.manager=org.javalite.activejdbc.cache.EHCacheManager
#cache.manager=org.javalite.activejdbc.cache.OSCacheManager

Here two things happen: 1. Cache in general is enabled (it is not enabled even if you have @Cached annotations on classes), and 2. ActiveJDBC will be using EHCacheManager as an implementation of cache.

Automatic cache purging

If you examine the log from above, you will see that after an insert statement into the LIBRARIES table, the system is purging cache related to this table, as well as BOOKS table. ActiveJDBC does this since the cache in memory might be potentially of out sync with the data in the DB, and hence will be purged. Related tables? caches are also purged. Since there exists relationship: library has many books, the books cache could also be stale, and this is a reason why a table BOOKS purged as well.

Manual cache purging

If you want to manually purge caches (in cases you make mutative or destructive data operations outside Model API), you can do so:

or:

Purge all caches

If you want to purge all caches, here is a snippet:

Listen/Propagate cache events

In more complex applications you may want to listen to cache events and then act on them: lets say propagate cache purging across cluster.

First, you need to create a listener for the cache events:

Then, register the listener:

Once this is done, the listener will start getting notified if a cache for a specific table is getting purged.

What to cache

While caching is a complex issue, I can suggest caching predominantly lookup data. Lookup data is something that does not change very frequently. If you start caching everything, you might run into a problem of cache thrashing where you fill cache with data, and purge it soon after, without having a benefit of caching. Instead of improving performance, you will degrade it with extra CPU, RAM and IO (is cluster is configured) used and little or no benefit of having a cache in the first place.

Things to be careful about

Potential for memory leaks

ActiveJDBC caches results from queries on object level. For instance, lets consider this code:

Essentially the framework generates a query like this:

and sets a parameter professor_id to prepared statement. Since the model Student is @Cached, then entire List<Student> students list will be cached.

The key to the list as a cached object is a combination of query text as well as all parameters to the query.

As a result, these two queries:

will produce two independent lists in cache just because their parameters are different. So, what will happen if you run many thousands or millions of queries that are the same, but only differ in parameters? You guess it, you will end up with millions of useless objects in cache and eventually will get an OutOfMemoryError.

The solution is to examine code, and ensure you are caching objects that are actually reusable.

It is possible to access and manage cache directly instead of @Cached annotation:

This way, you have a fine-tuned ability to only store specific objects in cache.

Cached data is exposed directly

When retrieving instances of cached models, be aware that exactly the same instances can be returned by subsequent calls to the same query. ActiveJDBC, as a lightweight framework, won?t try to be intelligent and manage clones of cached data for you. So, for example, considering Person is annotated as @Cached, two subsequent calls to Person.findById(1) will return the same instance:

Either caching or optimistic locking

Caching and optimistic_locking don?t get along. Don?t use both together.

Caching guarantees the result of subsequent calls to the same query return the same instances. So there can?t be different versions of the same result set living in the memory shared by the cache manager. Suppose Profile, a model with optimistic_locking, is also annotated as @Cached. The following will happen:

Relationships

ActiveJDBC manages caches for models and their respective relationships (read above), but in some cases you will use a query that ties together unrelated models:

If there exists a model User that is cached, and model RestrictedUser, and these tables/models have no relationship, then the line above could present a logical problem. If you execute the line above, and later change content of RESTRICTED_USERS table, then the query above will not see the change, and will return stale data. Developers need to be aware of this, and deal with these issues carefully. Whenever you change data in RESTRICTED_USERS table, please purge User model:

Mutative or destructive operations

Whenever you execute a mutative or destructive operation against a model (INSERT, UPDATE, DELETE), the entire cache for that model is invalidated. This means that caches are best used for lookup data (duh!).

The framework will also invalidate and drop caches of all related tables. For instance:

Given the tables:

and the models:

If you do this:

the framework will reset caches for both: User and Address models, not just user. This is done in order to prevent logical errors in the application.

Constantly changing cached data will then lead to Cache Stampede.

Unrelating models

In some cases, you need proper foreign keys in tables, but want to disconnect convention-based relationships in code

Given the tables:

and the models:

If you do this:

the framework will just reset the cache of the User model, and will not touch the cache of the Address model.

For more information, refer to JavaDoc: UnrelatedTo.

Cache providers

ActiveJDBC has a simple plugin framework for adding cache providers. Currently supports:

  • OSCache is dead now. Although it is working just fine on many of our projects, we recommend using EHCache
  • EHCache. EHCache is high performance popular open source project. For documentation, please refer to: http://ehcache.org/documentation
  • Redis - based cache provider (recent addition)

EHCache configuration (v 2.x)

Configuration needs to be provided in a file called ehcache.xml found at the root of a classpath. Example of a file content:

Please, note that ActiveJDBC does not create named caches in EHCache, but only uses default configuration specified by defaultCache element in this file.

EHCache configuration (v 3.6.3)

Name of the cache manager class: org.javalite.activejdbc.cache.EHCache3Manager. Set the following in the file activejdbc.properties:

cache.manager=org.javalite.activejdbc.cache.EHCache3Manager

In addition, you will need to configure EHCache itself. For that, add a file called activejdbc-ehcache.xml. Here is simple EHCache v3 configuration:

For more involved configuration options, refer to EHCache v3 documentation.

Redis cache configuration

Name of the cache manager class: org.javalite.activejdbc.cache.RedisCacheManager. Set the following in the file activejdbc.properties:

cache.manager=org.javalite.activejdbc.cache.RedisCacheManager

Also, provide a property file called activejdbc-redis.properties with two properties: redis.cache.manager.host and redis.cache.manager.port The properties file needs to be at the root of classpath.

Limitation: Redis cache manager does not support CacheManager#flush(CacheEvent) with value ALL.

External cache considerations

Reset cache when starting a nodes in a cluster - responsibility of a project.


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