diff options
Diffstat (limited to 'cache_commit_path_file_raw.go')
-rw-r--r-- | cache_commit_path_file_raw.go | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/cache_commit_path_file_raw.go b/cache_commit_path_file_raw.go new file mode 100644 index 0000000..4a4de62 --- /dev/null +++ b/cache_commit_path_file_raw.go @@ -0,0 +1,23 @@ +// SPDX-License-Identifier: AGPL-3.0-only +// SPDX-FileContributor: Runxi Yu <https://runxiyu.org> + +package main + +import ( + "github.com/dgraph-io/ristretto/v2" + "go.lindenii.runxiyu.org/lindenii-common/clog" +) + +var commitPathFileRawCache *ristretto.Cache[[]byte, string] + +func init() { + var err error + commitPathFileRawCache, err = ristretto.NewCache(&ristretto.Config[[]byte, string]{ + NumCounters: 1e4, + MaxCost: 1 << 60, + BufferItems: 8192, + }) + if err != nil { + clog.Fatal(1, "Error initializing commitPathFileRawCache: "+err.Error()) + } +} |