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
All data points are immutable, and all write operation is append-only. Logically any read operation and write operation don't conflict at all.
In spite of that, we currently lock with Mutex whenever reading and writing.
tstorage/memory_partition.go
Lines 178 to 187 in b1bbbaf
The text was updated successfully, but these errors were encountered:
Like MVCC (Multi Version Concurrency Control), it's enough to keep a read-only snapshot at a certain point and give back it when reading out.
Sorry, something went wrong.
No branches or pull requests
All data points are immutable, and all write operation is append-only. Logically any read operation and write operation don't conflict at all.
In spite of that, we currently lock with Mutex whenever reading and writing.
tstorage/memory_partition.go
Lines 178 to 187 in b1bbbaf
The text was updated successfully, but these errors were encountered: