-
Notifications
You must be signed in to change notification settings - Fork 43
Open
Labels
Description
In memcached you can pipeline sending multiple operations to use the network more efficiently. We already have Client::gets, but set, delete, and increment can also be pipelined this way. For high-performance applications, doing this kind of request batching is essential, so it'd be awesome to see support for these added to this crate! The old memcached-rs crate had support for this in the MultiOperation trait, and the implementation is pretty straightforward (and similar to gets).