Skip to Content
Reference GuideBest PracticesWhen to use a datastore to store data (or when not to)

When to use a datastore to store data (or when not to)

Datastores are best used to store data which is needed in multiple process instances. If data is only required as context within a specific instance, then it should live in the instance. Datastores can still be a good way to provide the object structure. A good rule of thumb is if you feel the need to create a record for an instance, then you probably shouldn’t.

Last updated on