File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -556,7 +556,7 @@ going to be rough orders of magnitude to give you a sense of scale; if
556556you need precise numbers for your environment, measure!)
557557
558558.. file.read benchmark is
559- https://github.com/python-trio/trio/blob/v0.27.0/ notes-to-self/ file-read-latency.py
559+ https://github.com/python-trio/trio/wiki/ notes-to-self# file-read-latencypy
560560.. Numbers for spinning disks and SSDs are from taking a few random
561561 recent reviews from http://www.storagereview.com/best_drives and
562562 looking at their "4K Write Latency" test results for "Average MS"
Original file line number Diff line number Diff line change 152152#
153153# Unfortunately, the Windows kernel seems to have bugs if you try to issue
154154# multiple simultaneous IOCTL_AFD_POLL operations on the same socket (see
155- # https://github.com/python-trio/trio/blob/v0.27.0/ notes-to-self/ afd-lab.py ).
155+ # https://github.com/python-trio/trio/wiki/ notes-to-self# afd-labpy ).
156156# So if a user calls wait_readable and
157157# wait_writable at the same time, we have to combine those into a single
158158# IOCTL_AFD_POLL. This means we can't just use the wait_overlapped machinery.
Original file line number Diff line number Diff line change 4242# backlog just causes it to be silently truncated to the configured maximum,
4343# so this is unnecessary -- we can just pass in "infinity" and get the maximum
4444# that way. (Verified on Windows, Linux, macOS using
45- # https://github.com/python-trio/trio/blob/v0.27.0/ notes-to-self/ measure-listen-backlog.py
45+ # https://github.com/python-trio/trio/wiki/ notes-to-self# measure-listen-backlogpy
4646def _compute_backlog (backlog : int | None ) -> int :
4747 # Many systems (Linux, BSDs, ...) store the backlog in a uint16 and are
4848 # missing overflow protection, so we apply our own overflow protection.
You can’t perform that action at this time.
0 commit comments