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.
This commit is contained in:
parent
94375b185f
commit
0c78b379f1
1 changed files with 0 additions and 18 deletions
18
src/cache/disk.rs
vendored
18
src/cache/disk.rs
vendored
|
@ -77,24 +77,6 @@ impl DiskCache {
|
||||||
db_update_channel_sender: db_tx,
|
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(
|
tokio::spawn(db_listener(
|
||||||
Arc::clone(&new_self),
|
Arc::clone(&new_self),
|
||||||
db_rx,
|
db_rx,
|
||||||
|
|
Loading…
Reference in a new issue