You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Reads/views are 10-12µs when clone files can be reused.
* List operations: 22µs.
* File cloning is 60µs, tending toward 75µs for larger files.
* Empty reads (and the sqlite read transaction): 360ns.
* Empty writes (but a forced immediate write transaction): 3µs.
Need to offload hole punching. The fcntl and opening files takes a good chunk of time. Perhaps values can be skipped if previous punches include them. Values can also be streamed over a channel and batched up.