Live data from Hacker News

Viewing profile — h33p

h33p

HN member
Joined
Fri, Dec 15, 2023, 11:03 PM UTC
HN karma
7
Public activity
2 items

About h33p

No profile information was provided.

Recent public activity

  1. comment
    Comment #38660078

    For TCP, you'd generally want to have a buffer pool and issue one repeating request that takes buffers out from that pool. This is what io_uring allows you to do. The difficulty co…

  2. comment
    Comment #38659995

    If you're doing sequential I/O, you will hardly be able to be faster than std library - it is synchronous, goes directly to the operating system, which does read-ahead. 40+ years o…