From c8505a6b70bba3f66d92b3ca7edd5406b06cee38 Mon Sep 17 00:00:00 2001 From: Al Date: Mon, 18 Oct 2021 10:40:31 +0800 Subject: [PATCH 1/2] add stretto cache --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index aacf83b..18df7b8 100644 --- a/README.md +++ b/README.md @@ -734,6 +734,7 @@ See also [About Rust’s Machine Learning Community](https://medium.com/@autumn_ * [jaemk/cached](https://github.com/jaemk/cached) — Simple function caching/memoization * [jaysonsantos/bmemcached-rs](https://github.com/jaysonsantos/bmemcached-rs) [[bmemcached](https://crates.io/crates/bmemcached)] — Memcached library written in pure rust [![build badge](https://api.travis-ci.org/jaysonsantos/bmemcached-rs.svg?branch=master)](https://travis-ci.org/jaysonsantos/bmemcached-rs) * [mozilla/sccache](https://github.com/mozilla/sccache/) - Shared Compilation Cache, great for Rust compilation [![build badge](https://api.travis-ci.org/mozilla/sccache.svg?branch=master)](https://travis-ci.org/mozilla/sccache) +* [al8n/stretto](https://github.com/al8n/stretto) - A high performance thread-safe memory-bound Rust cache. [![build badge](https://github.com/al8n/stretto/actions/workflows/ci.yml/badge.svg)](https://github.com/al8n/stretto/actions/workflows/ci.yml) ### Concurrency From e611c37eacd751113585aa08823e080d1906fe35 Mon Sep 17 00:00:00 2001 From: Al Date: Tue, 19 Oct 2021 15:18:05 +0800 Subject: [PATCH 2/2] add stretto cache --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 18df7b8..7418acb 100644 --- a/README.md +++ b/README.md @@ -731,10 +731,10 @@ See also [About Rust’s Machine Learning Community](https://medium.com/@autumn_ ### Caching * [aisk/rust-memcache](https://github.com/aisk/rust-memcache) — Memcached client library [![build badge](https://api.travis-ci.org/aisk/rust-memcache.svg?branch=master)](https://travis-ci.org/aisk/rust-memcache) +* [al8n/stretto](https://github.com/al8n/stretto) - A high performance thread-safe memory-bound Rust cache [![build badge](https://github.com/al8n/stretto/actions/workflows/ci.yml/badge.svg)](https://github.com/al8n/stretto/actions/workflows/ci.yml) * [jaemk/cached](https://github.com/jaemk/cached) — Simple function caching/memoization * [jaysonsantos/bmemcached-rs](https://github.com/jaysonsantos/bmemcached-rs) [[bmemcached](https://crates.io/crates/bmemcached)] — Memcached library written in pure rust [![build badge](https://api.travis-ci.org/jaysonsantos/bmemcached-rs.svg?branch=master)](https://travis-ci.org/jaysonsantos/bmemcached-rs) * [mozilla/sccache](https://github.com/mozilla/sccache/) - Shared Compilation Cache, great for Rust compilation [![build badge](https://api.travis-ci.org/mozilla/sccache.svg?branch=master)](https://travis-ci.org/mozilla/sccache) -* [al8n/stretto](https://github.com/al8n/stretto) - A high performance thread-safe memory-bound Rust cache. [![build badge](https://github.com/al8n/stretto/actions/workflows/ci.yml/badge.svg)](https://github.com/al8n/stretto/actions/workflows/ci.yml) ### Concurrency