Skip to content
Arief Bastian HB edited this page Feb 21, 2020 · 1 revision

Description

ABA Cache is experimentation of "Writing a doubly linked list in Rust is easy", and applying that as Cache. And of course, it is a chance to take my Rust ability up... :D

First implementation is LRU Cache, inspired by "LRU Cache". With linked list implementation replace by using "Slab", the spirit is as much as possible to not use unsafe rust, use it only when necessary.

Next I'd like to take this project ahead that it can provide the functionality as close as possible to "BigCache"

Clone this wiki locally