Golang LRU Cache for high concurrency
CCache is an LRU Cache, written in Go, focused on supporting high concurrency. Lock contention on the list is reduced by: – Introducing a window which limits the frequency that an item can get promoted – Using a buffered channel to queue promotions for a single worker – Garbage collecting within the same thread as the worker This package contains the source code needed for building packages that reference the following Go import paths: – github.com/karlseguin/ccache
Release | Stable | Testing |
---|---|---|
Fedora Rawhide | 2.0.7-3.fc35 | - |
Fedora 35 | 2.0.7-3.fc35 | - |
Fedora 34 | 2.0.7-2.fc34 | - |
You can contact the maintainers of this package via email at
golang-github-karlseguin-ccache dash maintainers at fedoraproject dot org
.