From 33af187c37353603a9629d3e7814da564775fe86 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Fri, 13 Sep 2019 11:36:47 +0100 Subject: [PATCH] Live blogging from SymfonyLive London 2019 --- .../2019-09-13-live-blogging-symfonylive-london.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/source/_posts/2019-09-13-live-blogging-symfonylive-london.md b/source/_posts/2019-09-13-live-blogging-symfonylive-london.md index fd660cda..534f74d1 100644 --- a/source/_posts/2019-09-13-live-blogging-symfonylive-london.md +++ b/source/_posts/2019-09-13-live-blogging-symfonylive-london.md @@ -220,4 +220,13 @@ Notifier * Robust and failsafe by default -Streamable uploads - `$mimeParts->toIterable()`. +* Streamable uploads - `$mimeParts->toIterable()`. +* donwload a file + + ```php + foreach ($client->stream($response) as $chunk) { + // ... + } + ``` + +- Responses are lazy, requests are concurrent