| Crates.io | supercache |
| lib.rs | supercache |
| version | 0.1.0 |
| created_at | 2025-12-29 03:16:05.772232+00 |
| updated_at | 2025-12-29 03:16:05.772232+00 |
| description | Fastest cache |
| homepage | |
| repository | https://github.com/nnachonesa/supercache |
| max_upload_size | |
| id | 2009893 |
| size | 23,588 |
An cache that its fast - read docs for more info!
Vec<Vec<(K, V)>>)use supercache::Supercache;
fn main() {
let mut cache = Supercache::new(None);
map.set("cat", 1);
map.set("dog", 2);
println!("{:?}", map.get("dog"));
}
Create new table
Insert or overwrite an value
Find an value by key.
Delete an element
Clear all buckets