We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 256ce58 commit 5628636Copy full SHA for 5628636
scylla/src/routing/mod.rs
@@ -1,3 +1,14 @@
1
+//! This module holds entities whose goal is to enable routing requests optimally,
2
+//! that is, choosing a target node and a shard such that it is a replica for
3
+//! given token.
4
+//!
5
+//! This includes:
6
+//! - token representation,
7
+//! - shard representation and shard computing logic,
8
+//! - partitioners, which compute token based on a partition key,
9
+//! - replica locator, which finds replicas (node + shard) for a given token.
10
11
+
12
pub mod locator;
13
pub mod partitioner;
14
mod sharding;
0 commit comments