mirror of
https://github.com/hickory-dns/hickory-dns.git
synced 2026-04-25 11:15:54 +03:00
[PR #317] [MERGED] Make TRust-DNS fast #1365
Labels
No labels
blocked
breaking-change
bug
bug:critical
bug:tests
cleanup
compliance
compliance
compliance
crate:all
crate:client
crate:native-tls
crate:proto
crate:recursor
crate:resolver
crate:resolver
crate:rustls
crate:server
crate:util
dependencies
docs
duplicate
easy
easy
enhance
enhance
enhance
feature:dns-over-https
feature:dns-over-quic
feature:dns-over-tls
feature:dnsssec
feature:global_lb
feature:mdns
feature:tsig
features:edns
has workaround
ops
perf
platform:WASM
platform:android
platform:fuchsia
platform:linux
platform:macos
platform:windows
pull-request
question
test
tools
tools
trust
unclear
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/hickory-dns#1365
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/hickory-dns/hickory-dns/pull/317
Author: @bluejekyll
Created: 12/17/2017
Status: ✅ Merged
Merged: 12/31/2017
Merged by: @bluejekyll
Base:
master← Head:make_tdns_fast📝 Commits (10+)
18e6bbbuse proper release targets in bench tests093f9d2split BinEncodable off from BinSerializable817dabcrestructure server to always borrow Records for responsedd49394improve edns serialization performancee55aac6improve Response Query encoding9a1dd64rename BinSerializable to BinDecodablec8ceef3fix place writingf4680e2change pointer management to use offsets7db9d53fix Place for new write_slice methodfb92b74speed up lowercase method📊 Changes
64 files changed (+2646 additions, -956 deletions)
View changed files
📝
Cargo.lock(+190 -135)➕
client/benches/lower_name_benches.rs(+80 -0)➕
client/src/op/lower_query.rs(+83 -0)📝
client/src/op/mod.rs(+2 -0)📝
client/src/op/update_message.rs(+10 -34)📝
client/src/rr/dnssec/keypair.rs(+1 -1)➕
client/src/rr/lower_name.rs(+281 -0)📝
client/src/rr/mod.rs(+4 -1)📝
client/src/rr/rr_key.rs(+12 -5)📝
client/src/serialize/binary/mod.rs(+4 -1)📝
client/src/serialize/txt/master.rs(+2 -2)📝
compatibility-tests/tests/sig0_tests.rs(+11 -2)📝
integration-tests/src/authority.rs(+1 -1)📝
integration-tests/src/lib.rs(+41 -10)📝
integration-tests/tests/authority_tests.rs(+37 -32)📝
integration-tests/tests/catalog_tests.rs(+55 -20)📝
integration-tests/tests/client_future_tests.rs(+4 -4)📝
integration-tests/tests/client_tests.rs(+3 -3)📝
integration-tests/tests/lookup_tests.rs(+2 -2)📝
integration-tests/tests/secure_client_handle_tests.rs(+1 -1)...and 44 more files
📄 Description
All of these changes make the TRust-DNS named faster than BIND9 on my machine. It's an arbitrary goal, but fun.
There are some additional changes coming to clean up the
Namechanges, I don't like the way those look at the moment.🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.