//! 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 crateMsgType;
/// 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));
/// ```