AJ Learning Hub logoAJ Learning Hub

Data Store (Make)

In Make, a data store is a built-in lightweight database for saving and retrieving data across scenario runs.

Analogy

Like a notebook your scenario writes to and reads from between runs.

Why it matters

Data stores let you persist state, deduplicate records, or cache values without an external database.

In practice

Storing processed order IDs in a data store to skip duplicates on the next run.

Related terms:Scenario (Make)IdempotencyVector DatabasePersistent vs Session Memory