Remove comments w.r.t. potential db optimizations

DB queries already are performed on their own thread, so spawning a
thread to do db work is unncessary.
master
Edward Shen 2021-07-14 11:21:28 -04:00
parent 94375b185f
commit 0c78b379f1
Signed by: edward
GPG Key ID: 19182661E818369F
1 changed files with 0 additions and 18 deletions

18
src/cache/disk.rs vendored
View File

@ -77,24 +77,6 @@ impl DiskCache {
db_update_channel_sender: db_tx,
});
// maybe this is better? in theory this sounds like it should be faster
// but in practice I haven't seen any perf improvements
// let ret = Arc::clone(&new_self);
// std::thread::spawn(move || {
// tokio::runtime::Builder::new_current_thread()
// .enable_all()
// .build()
// .unwrap()
// .block_on(db_listener(
// Arc::clone(&new_self),
// db_rx,
// db_pool,
// disk_max_size.get() as u64 / 20 * 19,
// ))
// });
// ret
tokio::spawn(db_listener(
Arc::clone(&new_self),
db_rx,