memcache-async
memcache-async copied to clipboard
A no-frills async memcached client for Rust.
Following the latest PR which implemented the increment command this one implements the decrement one. /cc @vavrusa
Now the delete operation will not wait for the delete response, which causes the deletion not to take effect. Maybe we should provide a sync version or modify the current...
As of now, there's no link from crates.io or docs.rs back to this repository, presumably because the field is missing from `Cargo.toml`.
@vavrusa First off, thank you for your excellent contribution towards the Rust Dev community - memcache-async. For compatibility, I'm adding `tokio::io` based AsyncWrite and AsyncRead implementations along with existing `futures::io`...
When parsing responses from the memcached server, we incorrectly interpreted any response containing "ERROR" as an error response. However, according to the memcached protocol specification, error responses must START with...
Previously, enabling `with-tokio` would also activate the `default` feature (`with-futures`), because Cargo includes default features by design. This would lead to a compilation error due to duplicate definitions from both...
Introduce support for configurable flags (32-bit unsigned integer) to handle caching use cases for users including but not limited to compression, metadata, etc. These flags enable users to customize the...