dynomite-engine 0.0.1

Embeddable Dynamo-style distributed replication engine: token-ring partitioning, gossip cluster, hinted handoff, anti-entropy, RediSearch FT.* surface.
Documentation
//! Memcached multi-key request classification.
//!
//! In the reference engine, `memcache_is_multikey_request` always
//! returns false: response coalescing for `get`/`gets` is driven by
//! the fragment vector instead of by the multikey flag. The Rust
//! port reproduces the same predicate.

use crate::msg::MsgType;

/// Constant `false`. The reference engine flags no Memcached request
/// as multikey here; multi-key handling for `get`/`gets` flows
/// through [`super::fragment::memcache_fragment`] instead.
///
/// # Examples
///
/// ```
/// use dynomite::msg::MsgType;
/// use dynomite::proto::memcache::memcache_is_multikey_request;
/// assert!(!memcache_is_multikey_request(MsgType::ReqMcGet));
/// assert!(!memcache_is_multikey_request(MsgType::ReqMcSet));
/// ```
#[must_use]
pub fn memcache_is_multikey_request(_ty: MsgType) -> bool {
    false
}