Hacked in mmap default
This commit is contained in:
parent
79a523f2fe
commit
07a5b69a25
4 changed files with 18 additions and 21 deletions
|
|
@ -16,7 +16,10 @@ use crate::{
|
|||
peer_connection::PeerConnectionOptions,
|
||||
read_buf::ReadBuf,
|
||||
spawn_utils::BlockingSpawner,
|
||||
storage::{filesystem::FilesystemStorageFactory, BoxStorageFactory, StorageFactoryExt},
|
||||
storage::{
|
||||
filesystem::{FilesystemStorageFactory, MmapFilesystemStorageFactory},
|
||||
BoxStorageFactory, StorageFactoryExt,
|
||||
},
|
||||
torrent_state::{
|
||||
ManagedTorrentBuilder, ManagedTorrentHandle, ManagedTorrentState, TorrentStateLive,
|
||||
},
|
||||
|
|
@ -190,6 +193,8 @@ pub struct Session {
|
|||
|
||||
default_defer_writes: bool,
|
||||
|
||||
// default_storage_factory: Option<BoxStorageFactory>,
|
||||
|
||||
// This is stored for all tasks to stop when session is dropped.
|
||||
_cancellation_token_drop_guard: DropGuard,
|
||||
}
|
||||
|
|
@ -425,6 +430,7 @@ pub struct SessionOptions {
|
|||
// If true, will write to disk in separate threads. The downside is additional allocations.
|
||||
// May be useful if the disk is slow.
|
||||
pub default_defer_writes: bool,
|
||||
// pub default_storage_factory: Option<BoxStorageFactory>,
|
||||
}
|
||||
|
||||
async fn create_tcp_listener(
|
||||
|
|
@ -1017,7 +1023,9 @@ impl Session {
|
|||
let storage_factory = opts
|
||||
.storage_factory
|
||||
.take()
|
||||
.unwrap_or_else(|| FilesystemStorageFactory::default().boxed());
|
||||
// .unwrap_or_else(|| self.default_storage_factory.clone())
|
||||
// .unwrap_or_else(|| FilesystemStorageFactory::default().boxed());
|
||||
.unwrap_or_else(|| MmapFilesystemStorageFactory::default().boxed());
|
||||
|
||||
if opts.list_only {
|
||||
return Ok(AddTorrentResponse::ListOnly(ListOnlyResponse {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue