tauri-plugin-cache 0.1.3

Advanced disk caching solution for Tauri applications. Provides compression, TTL management, memory caching, automatic cleanup, and cross-platform support. Enhances data access performance and storage optimization.
Documentation
1
2
3
4
5
6
7
8
const COMMANDS: &[&str] = &["set", "get", "has", "remove", "clear", "stats"];

fn main() {
    tauri_plugin::Builder::new(COMMANDS)
        .android_path("android")
        .ios_path("ios")
        .build();
}