Engine

Controlling caching

Important

This section covers some details of the caching mechanism which are not discussed in the topics section. If you are developing plugins and want to modify the caching behavior of your classes, we recommend you read that section first.

There are several methods which the internal classes of AiiDA use to control the caching mechanism:

On the level of the generic orm.Node class:

  • The is_valid_cache() property determines whether a particular node can be used as a cache. This is used for example to disable caching from failed calculations.

  • Node classes have a _cachable attribute, which can be set to False to completely switch off caching for nodes of that class. This avoids performing queries for the hash altogether.

On the level of the Process and orm.ProcessNode classes:

The WorkflowNode example

As discussed in the topic section, nodes which can have RETURN links cannot be cached. This is enforced on two levels:

  • The _cachable property is set to False in the Node, and only re-enabled in CalculationNode (which affects CalcJobs and calcfunctions). This means that a WorkflowNode will not be cached.

  • The _store_from_cache method, which is used to “clone” an existing node, will raise an error if the existing node has any RETURN links. This extra safe-guard prevents cases where a user might incorrectly override the _cachable property on a WorkflowNode subclass.