We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Transaction 的 set(key,value) 不会增加版本号,当前进程读取是新数据,关闭进程后重新读取就会读取旧数据
读取都是用的
pub fn get(&self, key: impl Into<BytesMut>) -> Result<Value> { let key = key_with_ts(key.into(), std::u64::MAX); self.core.get(&key) }
The text was updated successfully, but these errors were encountered:
经过研究发现,是因为CommitInfo default的时候 next_txn_ts 总是为0导致的 每次启动进程都是从version 0开始设置
Sorry, something went wrong.
next_txn_ts should be updated when opening the DB, but the logic has not been added yet.
next_txn_ts
Please use english since this is a global community. Thanks.
No branches or pull requests
Transaction 的 set(key,value) 不会增加版本号,当前进程读取是新数据,关闭进程后重新读取就会读取旧数据
读取都是用的
The text was updated successfully, but these errors were encountered: