Skip to main content
Memobase supports asynchronous operations for inserting and flushing data. Offloading these tasks to background processes improves your application’s performance and responsiveness by preventing memory operations from blocking the main thread. When you perform an asynchronous insert or flush, the data is queued for processing, and the method returns immediately. This allows your application to continue executing while Memobase handles the data in the background.

SDK Examples

Here’s how to use both synchronous and asynchronous operations in our SDKs:
For more details, see the API reference for flush and insert.