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 280921a commit ff2aa17Copy full SHA for ff2aa17
scylla/src/routing/partitioner.rs
@@ -1,3 +1,13 @@
1
+//! Partitioners are algorithms that can compute token for a given partition key,
2
+//! ultimately allowing optimised routing of requests (such that a request is routed
3
+//! to replicas, which are nodes and shards that really own the data the request concerns).
4
+//! Currently, two partitioners are supported:
5
+//! - Murmur3Partitioner
6
+//! - the default partitioner,
7
+//! - modified for compatibility with Cassandra's buggy implementation.
8
+//! - CDCPartitioner
9
+//! - the partitioner employed when using CDC (_Change Data Capture_).
10
+
11
use bytes::Buf;
12
use scylla_cql::{frame::types::RawValue, types::serialize::row::SerializedValues};
13
use std::num::Wrapping;
0 commit comments