Instant API: Non-Persistent Mode
Instant API, or non-persistent operation mode, has been introduced in API 6.0.1 . It is a mode where we do not save any data everywhere. All data is being used only within a request: you send it, get the response to process it, and that's all, nothing gets recorded. This ensures you do not store any sensitive data, which might be crucial for GDPR compliance. Also, it significantly reduces storage requirements.
To enable this mode, when you prepare the config.py file to run the API, set the OZ_APP_COMPONENTS
parameter to stateless
. Then, call /api/instant/folders/
to send the request without saving any data.
Last updated
Was this helpful?