You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the input data is turned into a bundle at the time the application calls "bplib_send", and the bundle is temporarily stored in memory. This bundle is then routed to a storage service for retention, which offloads it to some form of persistent storage (at least after #90 is implemented).
This basically entails making two copies, first into temporary storage then into the persistent storage. This could potentially be reduced, if the bundleization step was deferred until it arrived at storage (or at least the payload was sent as a pointer rather than a copy), then it could be only a single copy directly into persistent storage.
The text was updated successfully, but these errors were encountered:
Currently the input data is turned into a bundle at the time the application calls "bplib_send", and the bundle is temporarily stored in memory. This bundle is then routed to a storage service for retention, which offloads it to some form of persistent storage (at least after #90 is implemented).
This basically entails making two copies, first into temporary storage then into the persistent storage. This could potentially be reduced, if the bundleization step was deferred until it arrived at storage (or at least the payload was sent as a pointer rather than a copy), then it could be only a single copy directly into persistent storage.
The text was updated successfully, but these errors were encountered: