This thread has been archived. It is now read-only. Topics
Rules
More
News Feedback Android Desktop Java Desktop Rust Relays DHT Bootstrap DKT Website Bug Report Dev All Categories

DHT Libraries

Dev
Octo 1/16/2025

It might be smart to switch the rust version from threads to async tasks instead for the rust version.

For the java version we should switch to using a threadpool executor.

Octo 1/20/2025

I have decided to instead change to single thread send/receive and spam filtering to one thread, making it a single threaded application, however with rust it is 2 threads if you include the timer thread for the periodic tasks.

Octo 1/27/2025

Rust DHT library when returning we should be always returning as a Result<> not Option<>, Option<> is intended for storing, Result<> is for responding / getting.