Store adapters overview
Store adapters provide pluggable backends for data persistence. Reqon includes a
Memory store
The memory store uses an in-memory hash map. Data is lost when the process ends.
File store
The file store persists data as JSON files in the .reqon-data directory.
PostgREST store
The PostgREST store adapter connects to PostgreSQL via PostgREST or Supabase, for production-ready SQL storage.
Custom store adapters
You can connect Reqon to any storage backend by implementing the StoreAdapter