📄️ Store adapters overview
Store adapters provide pluggable backends for data persistence. Reqon includes several built-in adapters and supports custom implementations.
📄️ 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 .vague-data directory.
📄️ PostgREST Store
The PostgREST store adapter connects to PostgreSQL via PostgREST or Supabase, enabling production-ready SQL storage.
📄️ Custom store adapters
Create custom store adapters to connect Reqon to any storage backend.