[ 源代码: golang-github-dgraph-io-ristretto ]
软件包:golang-github-dgraph-io-ristretto-dev(2.1.0-1)
golang-github-dgraph-io-ristretto-dev 的相关链接
Debian 的资源:
下载源码包 golang-github-dgraph-io-ristretto:
- [golang-github-dgraph-io-ristretto_2.1.0-1.dsc]
- [golang-github-dgraph-io-ristretto_2.1.0.orig.tar.gz]
- [golang-github-dgraph-io-ristretto_2.1.0-1.debian.tar.xz]
维护小组:
外部的资源:
- 主页 [github.com]
相似软件包:
- libconcurrentqueue-dev
- golang-github-victoriametrics-fastcache-dev
- golang-github-twin-gocache-dev
- lua-resty-lrucache
- python3-borgstore
- golang-github-bmatsuo-lmdb-go-dev
- golang-github-tidwall-buntdb-dev
- golang-github-bep-lazycache-dev
- golang-github-hodgesds-perf-utils-dev
- golang-github-renekroon-ttlcache-dev
- python3-web-cache
试制(Experimental)软件包
警告:这个软件包来自于 experimental 发行版。这表示它很有可能表现出不稳定或者出现 bug ,甚至是导致资料损失。请务必在使用之前查阅 changelog 以及其他潜在的文档。
high performance memory-bound Go cache
Ristretto is a fast, concurrent cache library built with a focus on performance and correctness.
The motivation to build Ristretto comes from the need for a contention-free cache in Dgraph (https://github.com/dgraph-io/dgraph).
Features:
* High Hit Ratios - with our unique admission/eviction policy pairing, Ristretto's performance is best in class. * Eviction: SampledLFU - on par with exact LRU and better performance on Search and Database traces. * Admission: TinyLFU - extra performance with little memory overhead (12 bits per counter). * Fast Throughput - we use a variety of techniques for managing contention and the result is excellent throughput. * Cost-Based Eviction - any large new item deemed valuable can evict multiple smaller items (cost could be anything). * Fully Concurrent - you can use as many goroutines as you want with little throughput degradation. * Metrics - optional performance metrics for throughput, hit ratios, and other stats. * Simple API - just figure out your ideal Config values and you're off and running.Status Ristretto is usable but still under active development. We expect it to be production ready in the near future.
其他与 golang-github-dgraph-io-ristretto-dev 有关的软件包
|
|
|
|
-
- dep: golang-github-cespare-xxhash-dev
- Go implementation of the 64-bit xxHash algorithm (XXH64)
-
- dep: golang-github-dgryski-go-farm-dev
- pure-Go FarmHash implementation
-
- dep: golang-github-stretchr-testify-dev
- sacred extension to the standard Go testing package