Memobase offers asynchronous operations for inserting and flushing data. This allows for improved performance and responsiveness by offloading these tasks to background processes.
When you perform an async insert or flush, the data is not immediately processed. Instead, it’s queued for later processing.
By doing so, the memory process won’t block your Apps, and you can just leave it to Memobase to handle the data.
Here are some examples of how to switch between sync and async insert/flush in our SDKs:
For detailed API, refer to flush and insert.
Memobase offers asynchronous operations for inserting and flushing data. This allows for improved performance and responsiveness by offloading these tasks to background processes.
When you perform an async insert or flush, the data is not immediately processed. Instead, it’s queued for later processing.
By doing so, the memory process won’t block your Apps, and you can just leave it to Memobase to handle the data.
Here are some examples of how to switch between sync and async insert/flush in our SDKs:
For detailed API, refer to flush and insert.