azcache 0.1.0

Unified cache backend for Redis and Memcached
Documentation
  • Coverage
  • 100%
    13 out of 13 items documented1 out of 7 items with examples
  • Size
  • Source code size: 6.77 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 2.3 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 15s Average build duration of successful builds.
  • all releases: 15s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • Repository
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • azataiot

azcache

Unified cache backend for Redis and Memcached.

Overview

azcache provides a unified interface for interacting with different cache backends, including Redis and Memcached. It allows you to switch between cache implementations without changing your application code.

Status

This crate is under active development. The API may change in future versions.

Features

  • Unified CacheBackend trait for cache operations
  • Support for multiple cache backends (Redis, Memcached)
  • Async-ready design
  • Simple and intuitive API

Installation

Add this to your Cargo.toml:

[dependencies]
azcache = "0.1"

Usage

use azcache::CacheBackend;

// Implement the CacheBackend trait for your preferred cache system

License

MIT License - see LICENSE for details.