Replies: 1 comment
-
| 
         I saw #408, it seems what I want is pipeline mode which is a feature of the database, and I can't achive it with something like   | 
  
Beta Was this translation helpful? Give feedback.
                  
                    0 replies
                  
                
            
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment
  
        
    
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Currently I'm using a
Transactionwith multiple successive.awaitcalls, but I think there must be a way to run those futures concurrently, I just don't know how.I tried to do it using
FuturesUnordered. The problem I'm facing is thatExecutoris only implemented for&mut Transaction, andTransactiondoesn't implementCopyorClone, this means those futures must take multiple mutable reference to oneTransaction, which is not allowed.Beta Was this translation helpful? Give feedback.
All reactions