-
-
Notifications
You must be signed in to change notification settings - Fork 14.8k
Support positional vectored IO for unix files #71055
Copy link
Copy link
Open
Labels
C-feature-requestCategory: A feature request, i.e: not implemented / a PR.Category: A feature request, i.e: not implemented / a PR.T-libs-apiRelevant to the library API team, which will review and decide on the PR/issue.Relevant to the library API team, which will review and decide on the PR/issue.
Metadata
Metadata
Assignees
Labels
C-feature-requestCategory: A feature request, i.e: not implemented / a PR.Category: A feature request, i.e: not implemented / a PR.T-libs-apiRelevant to the library API team, which will review and decide on the PR/issue.Relevant to the library API team, which will review and decide on the PR/issue.
Type
Fields
Give feedbackNo fields configured for issues without a type.
Next to the existing
write_vectoredandread_vectoredAPIs, it would be great to havewrite_vectored_atandread_vectored_atmethods forFiles on UNIX systems, corresponding to thepwritevandpreadvsyscalls. This would be an easy way to add means for high performance file IO using the standard libraryFiletype.As far as I understand, the equivalent does not exist on Windows, so this would probably have to live in the unix
FileExttrait.If this is deemed desirable, I'd be happy to send a PR for this.