Update data_stores.md (#707)

nit
This commit is contained in:
fzzylogic 2023-11-22 21:39:48 +09:00 committed by GitHub
parent d737d40ab7
commit 55983a5aea
1 changed files with 1 additions and 1 deletions

View File

@ -7,6 +7,6 @@ It can represent a database, file system, or any other storage mechanism.
## When to use
You might use a Data Store when you it is not sufficient for data to be accessible in just a single process instance, but it needs to be shared across process instances.
You might use a Data Store when it is not sufficient for data to be accessible in just a single process instance, but it needs to be shared across process instances.
If you a have a use case where you need to store data and access it from multiple different process instances, you could also consider using a Service Task to contact a database external to SpiffWorkflow, either via a database library in a connector or using a database via API.
All of these mechanisms work well in SpiffWorkflow, so the choice will depend on your storage and performance requirements.