File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -156,7 +156,7 @@ Funnels file descriptor in readable stream into event loop and thence executes a
156
156
- ** nbytes** (int|null) - The number of bytes to read.
157
157
> Specifying ` null ` will condition the use of a 1KB buffer.
158
158
- ** vcount** (int|null) - The number of read vectors to use.
159
- > Specifying ` null ` will condition the use of 2 vectors .
159
+ > Specifying ` null ` will condition the use of ` 1 ` vector .
160
160
> Any value north of ` 8 ` will likely result in an inefficient read.
161
161
- ** offset** (int|null) - The point at which to start the read operation.
162
162
> Specifying ` null ` will condition the use of an offset of ` 0 ` .
@@ -214,7 +214,7 @@ Funnels file descriptor in writable stream into event loop and thence executes a
214
214
> The file descriptor in the stream is internally given a non-blocking disposition.
215
215
- ** contents** (string) - The contents to write to the file descriptor.
216
216
- ** vcount** (int|null) - The number of write vectors to use.
217
- > Specifying ` null ` will condition the use of 2 vectors .
217
+ > Specifying ` null ` will condition the use of ` 1 ` vector .
218
218
> Any value north of ` 8 ` will likely result in an inefficient write.
219
219
- ** callback** (callable) - The unary function through which the number of written bytes is propagated.
220
220
Original file line number Diff line number Diff line change 26
26
#define DEFAULT_STREAM_BUFF_LEN 1024
27
27
#define DEFAULT_CONN_BUFF_LEN 8132
28
28
#define DEFAULT_HTTP_HEADER_LIMIT 100
29
- #define DEFAULT_VECTOR_COUNT 2
29
+ #define DEFAULT_VECTOR_COUNT 1
30
30
#define DEFAULT_READV_OFFSET 0
31
31
#define PHP_MRLOOP_TIMER 1
32
32
#define PHP_MRLOOP_PERIODIC_TIMER 2
You can’t perform that action at this time.
0 commit comments