[Question] How does the app handle duplicates between domain blocklists? #908
-
I briefly searched the issue tracker and code base to see if this has been addressed. If there are duplicates, could this affect performance for the resolver? |
Beta Was this translation helpful? Give feedback.
Answered by
ignoramous
May 17, 2023
Replies: 2 comments
-
No it doesn't affect performance at all. Domains name are stored in a Succinct Radix Trie (impl: js, go), which optimally handles duplicates and all. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
n8x0b7T
-
Thanks for the info! Good to know. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
No it doesn't affect performance at all.
Domains name are stored in a Succinct Radix Trie (impl: js, go), which optimally handles duplicates and all.