faaskeeper
faaskeeper copied to clipboard
Pipelining write operations
Currently, a single writer function can only execute a batch of requests sequentially. However, the operations can be efficiently pipelined by pushing requests to storage in parallel while preserving the order of operations.
- [ ] Implement a thread-pool-based execution of storage requests.
- [ ] Turn each operation into a sequence of steps.
- [ ] Add tests evaluating batch of requests.