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
I know txn can not write future data, but can it read future data?
let txn = db.transaction().await;letmut txn_future = db.transaction().await;
txn_future.insert("1");
txn_future.commit().await.unwrap();// can txn get "1" ?
txn.get("1").await.unwrap();
The text was updated successfully, but these errors were encountered:
Question
Before asking a question, make sure you have:
I know txn can not write future data, but can it read future data?
The text was updated successfully, but these errors were encountered: