aquatic/TODO.md
Joakim Frostegård 1672ff2e37 Update TODO
2020-04-08 01:51:41 +02:00

33 lines
No EOL
1.2 KiB
Markdown

# TODO
* Configuration, cli
* Tests
* extract_response_peers
* Cleaner code
* Stack-allocated vector?
* Benchmarks
* num_rounds command line argument
* Send in connect reponse ids to other functions as integration test
* Save last results, check if difference is significant?
* ProgressBar: `[{elapsed_precise}]` and eta_precise?
* Test server over udp socket instead?
* Run multiple threads to test performance when contested?
* Performance
* cpu-target=native good?
* mialloc good?
* bittorrent_udp
* ParseError enum maybe, with `Option<TransactionId>`
* Avoid heap allocation in general if it can be avoided?
* quickcheck tests for conversions
* other unit tests?
## Don't do
* Other HashMap hashers (such as SeaHash): seemingly not worthwhile (might be
with AVX though)
* `sendmmsg`: can't send to multiple socket addresses, so doesn't help
* Config behind Arc in state: it is likely better to be able to pass it around
without state
* Use `bytes` crate for bittorrent_udp: seems to worsen performance somewhat
* Zerocopy (https://docs.rs/zerocopy/0.3.0/zerocopy/index.html) for requests
and responses? Doesn't work on Vec etc