A.J. Beamon
A.J. Beamon
I think I understand what's happening here, and I'm going to paste a slightly different version of the first transaction to make it easier to talk about: ``` db.run(tr ->...
@spullara The problem is a timing issue where both directories check for the presence of the parent directory before either creates it. Another workaround which is feasible in some use...
That approach would have some added costs and doesn't eliminate the need for synchronization. When creating a directory, you'd either need to check for the existence of your path preemptively...
> Am I right to understand that the key word here is simultaneous? Meaning that as long as operations on directories with the same prefix are performed sequentially on the...