wedb_standalone 0.1.1

单机网络服务底座:RESP 协议帧、AOF 逻辑层与节点服务编排(对标 Garnet libs/server 单机半区)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub struct RespCommandArgument;

impl RespCommandArgument {
  /// libs/server/Resp/RespCommandArgument.cs:ToByteRespFormat
  pub fn to_byte_resp_format(_output: &mut Vec<u8>) {}

  /// libs/server/Resp/RespCommandArgument.cs:ToRespFormat
  pub fn to_resp_format(_output: &mut Vec<u8>) {}

  /// libs/server/Resp/RespCommandArgument.cs:CanConvert
  pub fn can_convert() -> bool {
    true
  }
}