yadayada

Results 61 comments of yadayada

1) I meant that it should be checked whether the node has a single parent or not. If it has a) a single parent, the node may be safely trashed,...

> yet it still seems to be auto syncing. If you mount in foreground mode and redirect the log messages to /dev/null, e.g. `acd_cli -nl -d mount -i0 ~/mountpoint 2>/dev/null`,...

I think acd_cli may have hit its rate limits, see #416.

For now, I put in a check to look for the existence of the root node after syncing.

I'd see if waiting a few seconds does anything after a file release... ``` diff --- a/acdcli/acd_fuse.py +++ b/acdcli/acd_fuse.py @@ -334,6 +334,7 @@ class WriteProxy(object): if f: try: f.close() +...

That's odd. Did you use multiple connections?

Please see if the pull request #436 improves the insertion speed.

@christianreiss Please test syncing whilst mounted with PR #436 using a database backend different from sqlite.

Only sequential (over)writes are supported, so that write at offset 4096 fails.

@bgemmill I guess writing on the current offset from different file handles will not have detrimental effects on standard write operations. If you make a PR, I _probably_ will have...