jmeaster30 / simpledns

A really basic DNS server written in Rust
0 stars 0 forks source link

Need fast lookup for block lists #13

Open jmeaster30 opened 2 weeks ago

jmeaster30 commented 2 weeks ago

I want the ability to download a file of bad domain names and be able to block domains if they are in that file

This would require some sort of fast lookup data structure.

jmeaster30 commented 2 weeks ago

We COULD make the database handle it

jmeaster30 commented 2 weeks ago

Turns out the bloom filter is NOT complicated. I have an implementation but want to do more research into other options