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
A read concern specifies if a read must go to the leader or it can go to a follower.
ANY - any server can answer. LEADER - only the leader can answer. QUORUM - do consensus on a read as well - stretch goal - implement in another task.
If this is not defined the server will answer reads from the first server hit and will not redirect requests - as in ANY.
If it is specified as "Leader" and the server is a follower it will redirect the request to leader.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
A read concern specifies if a read must go to the leader or it can go to a follower.
ANY - any server can answer.
LEADER - only the leader can answer.
QUORUM - do consensus on a read as well - stretch goal - implement in another task.
If this is not defined the server will answer reads from the first server hit and will not redirect requests - as in ANY.
If it is specified as "Leader" and the server is a follower it will redirect the request to leader.
The text was updated successfully, but these errors were encountered: