# README
Bufferer
Bufferer
is a middleware which provides capability for asynchronous data transfer. Bufferer
collects items coming from the source endpoint into an in-memory storage and later sends all collected items into the target endpoint as a single batch. Bufferer
can dramatically optimize data transfer speed and increase throughput.
How it works
See the code for details. A brief overview of how Bufferer
works (in pair with IntervalThrottler
) is provided on the picture below. The picture refers to the "old trigger" — this is how Bufferer
worked in the past and how it must not be implemented.
# Functions
Bufferer buffers AsyncPush operations by storing items in a built-in buffer.
# Structs
No description provided by the author
# Interfaces
Bufferable is an interface for destination configurations.