wedb_standalone 0.1.1

单机网络服务底座:RESP 协议帧、AOF 逻辑层与节点服务编排(对标 Garnet libs/server 单机半区)
//! 简化命令元数据结构(对标 libs/server/Resp/RespCommandInfoSimplifiedStructs.cs)
//!
//! C# 静态缓存简化版命令元数据与键规格(COMMAND 简化应答面);命令元
//! 数据域为并行推进面,本域保留承接说明。

/// 简化命令元数据结构
pub struct RespCommandInfoSimplifiedStructs;

impl RespCommandInfoSimplifiedStructs {
  /// libs/server/Resp/RespCommandInfoSimplifiedStructs.cs:PopulateSimpleCommandInfo
  ///
  /// 缺口说明:简化命令元数据静态缓存填充;rust 命令元数据域并行推进
  /// (豁免登记见 js/check/ignore/libs/server/Resp/
  /// RespCommandInfoSimplifiedStructs.yml)
  pub fn populate_simple_command_info() {}

  /// libs/server/Resp/RespCommandInfoSimplifiedStructs.cs:TryGetSimpleKeySpec
  ///
  /// 缺口说明:简化键规格查询;同上承接说明,未填充即返回 false
  pub fn try_get_simple_key_spec() -> bool {
    false
  }
}