google-drive-ocamlfuse icon indicating copy to clipboard operation
google-drive-ocamlfuse copied to clipboard

File transmission limit

Open talesam opened this issue 3 years ago • 1 comments

I already apologize for posting here, but I haven't found a forum or anything like that. I am using rclone + fuse to mount the drive on my linux server, however there is a copy limit of 2-3 files per second, so very small files will take forever.

I would like to know if using your protocol there is also this limit, that is, the copy is slow or copies according to the limit of the network?

talesam avatar May 26 '21 14:05 talesam

You can turn on the async upload queue:

async_upload_queue=true

And set the maximum number of upload threads (the default is 10):

async_upload_threads=10

See https://github.com/astrada/google-drive-ocamlfuse/wiki/Configuration

astrada avatar May 27 '21 09:05 astrada