Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Async requests

To send async requests use nc.send_async. It has two more keyword args:

  • amount: None | int

    Amount of requests to send. Default is 1.

  • threads: None | int

    How many threads to use. Default is 1.

Function returns nc.AsyncResponses.

Rusty inner workings

NeoCurl uses Tokio Runtime to schedule amount of tasks across threads concurent threads.

Total amount of requests ran is not amount * threads. Tasks are split equally across all threads.