mirror of
https://github.com/rclone/rclone.git
synced 2024-11-07 17:14:44 +01:00
fd95511091
Before this change, bisync needed to build a full listing for Path1, then a full listing for Path2, then compare them -- and each of those tasks needed to finish before the next one could start. In addition to being slow and inefficient, it also caused real problems if a file changed between the time bisync checked it on Path1 and the time it checked the corresponding file on Path2. This change solves these problems by listing both paths concurrently, using the same March infrastructure that check and sync use to traverse two directories in lock-step, optimized by Go's robust concurrency support. Listings should now be much faster, and any given path is now checked nearly-instantaneously on both sides, minimizing room for error. Further discussion: https://forum.rclone.org/t/bisync-bugs-and-feature-requests/37636#:~:text=4.%20Listings%20should%20alternate%20between%20paths%20to%20minimize%20errors |
||
---|---|---|
.. | ||
test_all_changed | ||
test_basic | ||
test_changes | ||
test_check_access | ||
test_check_access_filters | ||
test_check_filename | ||
test_check_sync | ||
test_createemptysrcdirs | ||
test_dry_run | ||
test_equal | ||
test_extended_char_paths | ||
test_extended_filenames | ||
test_filters | ||
test_filtersfile_checks | ||
test_ignorelistingchecksum | ||
test_max_delete_path1 | ||
test_max_delete_path2_force | ||
test_rclone_args | ||
test_resync | ||
test_rmdirs | ||
test_volatile |