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
Copy file name to clipboardExpand all lines: course-definition.yml
+97
Original file line number
Diff line number
Diff line change
@@ -822,3 +822,100 @@ stages:
822
822
- It's normal for a very short string like `abc` to increase in size when compressed.
823
823
marketing_md: |
824
824
In this stage, you'll add support for encoding the response body using `gzip`.
825
+
826
+
- slug: "ag9"
827
+
name: "Persistent connection"
828
+
difficulty: medium
829
+
description_md: |-
830
+
In this stage, you'll add support for persistent HTTP connections. By default, HTTP/1.1 connections are persistent, meaning the same TCP connection can be reused for multiple requests.
831
+
832
+
### Tests
833
+
834
+
The tester will execute your program like this:
835
+
```bash
836
+
$ ./your_program.sh
837
+
```
838
+
839
+
The tester will then send two sequential requests over the same connection:
0 commit comments