mbpr 0.0.1

Memcached binary protocol parser
Documentation
  • Coverage
  • 29.51%
    36 out of 122 items documented0 out of 26 items with examples
  • Size
  • Source code size: 1.3 MB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 6.19 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 13s Average build duration of successful builds.
  • all releases: 13s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • Documentation
  • valarauca/mbpr
    2 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • valarauca

MemCached Binary Protocol Revamp Parser

Docs

The goal of this crate to start building a memcached rust client.

This crate implements an elementary level packet parser/encoder. The custom semantics around individual opcode's extra fields is not handled in this release. They will be in the future.

This crate does NO verification data while encoding. So it on the library implementary to ensure it follows the basic rules of MBPR for communicating to a server. (Key <= 250 ASCII characters, Body <= 2MB, etc.)

####Import

[dependencies]
mbpr = "0.0.1"