From 976876fced2ab89600b4e7538b116256e107184a Mon Sep 17 00:00:00 2001 From: DanielMarchand Date: Thu, 4 Mar 2021 15:09:07 +0100 Subject: [PATCH] docs: reference caching howto in workflow section (#4789) It might be helpful to people learning about AiiDA workflows to know that caching exists and point them in that direction. Co-authored-by: Leopold Talirz --- docs/source/howto/workflows.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/source/howto/workflows.rst b/docs/source/howto/workflows.rst index 3c5f992c75..844fc7b2c1 100644 --- a/docs/source/howto/workflows.rst +++ b/docs/source/howto/workflows.rst @@ -21,6 +21,10 @@ Here we present a brief introduction on how to write both workflow types. For more details on the concept of a workflow, and the difference between a work function and a work chain, please see the corresponding :ref:`topics section`. +.. note:: + + Developing workflows may involve running several lengthy calculations. Consider :ref:`enabling caching ` to help avoid repeating long workflow steps. + Work function -------------