aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cache.go74
-rw-r--r--cache_commit_path_file_html.go25
-rw-r--r--cache_commit_path_file_raw.go23
-rw-r--r--cache_commit_tree_readme.go31
-rw-r--r--cache_index_commits_display.go23
5 files changed, 102 insertions, 74 deletions
diff --git a/cache.go b/cache.go
deleted file mode 100644
index 59c4004..0000000
--- a/cache.go
+++ /dev/null
@@ -1,74 +0,0 @@
-// SPDX-License-Identifier: AGPL-3.0-only
-// SPDX-FileContributor: Runxi Yu <https://runxiyu.org>
-
-package main
-
-import (
- "html/template"
-
- "github.com/dgraph-io/ristretto/v2"
- "go.lindenii.runxiyu.org/lindenii-common/clog"
-)
-
-type treeReadmeCacheEntry struct {
- DisplayTree []displayTreeEntry
- ReadmeFilename string
- ReadmeRendered template.HTML
-}
-
-// key = commit hash + path
-var treeReadmeCache *ristretto.Cache[[]byte, treeReadmeCacheEntry]
-
-func init() {
- var err error
- treeReadmeCache, err = ristretto.NewCache(&ristretto.Config[[]byte, treeReadmeCacheEntry]{
- NumCounters: 1e4,
- MaxCost: 1 << 60,
- BufferItems: 8192,
- })
- if err != nil {
- clog.Fatal(1, "Error initializing indexPageCache: "+err.Error())
- }
-}
-
-var indexCommitsDisplayCache *ristretto.Cache[[]byte, []commitDisplay]
-
-func init() {
- var err error
- indexCommitsDisplayCache, err = ristretto.NewCache(&ristretto.Config[[]byte, []commitDisplay]{
- NumCounters: 1e4,
- MaxCost: 1 << 60,
- BufferItems: 8192,
- })
- if err != nil {
- clog.Fatal(1, "Error initializing indexCommitsCache: "+err.Error())
- }
-}
-
-var commitPathFileHTMLCache *ristretto.Cache[[]byte, template.HTML]
-
-func init() {
- var err error
- commitPathFileHTMLCache, err = ristretto.NewCache(&ristretto.Config[[]byte, template.HTML]{
- NumCounters: 1e4,
- MaxCost: 1 << 60,
- BufferItems: 8192,
- })
- if err != nil {
- clog.Fatal(1, "Error initializing commitPathFileHTMLCache: "+err.Error())
- }
-}
-
-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())
- }
-}
diff --git a/cache_commit_path_file_html.go b/cache_commit_path_file_html.go
new file mode 100644
index 0000000..ec5f67a
--- /dev/null
+++ b/cache_commit_path_file_html.go
@@ -0,0 +1,25 @@
+// SPDX-License-Identifier: AGPL-3.0-only
+// SPDX-FileContributor: Runxi Yu <https://runxiyu.org>
+
+package main
+
+import (
+ "html/template"
+
+ "github.com/dgraph-io/ristretto/v2"
+ "go.lindenii.runxiyu.org/lindenii-common/clog"
+)
+
+var commitPathFileHTMLCache *ristretto.Cache[[]byte, template.HTML]
+
+func init() {
+ var err error
+ commitPathFileHTMLCache, err = ristretto.NewCache(&ristretto.Config[[]byte, template.HTML]{
+ NumCounters: 1e4,
+ MaxCost: 1 << 60,
+ BufferItems: 8192,
+ })
+ if err != nil {
+ clog.Fatal(1, "Error initializing commitPathFileHTMLCache: "+err.Error())
+ }
+}
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())
+ }
+}
diff --git a/cache_commit_tree_readme.go b/cache_commit_tree_readme.go
new file mode 100644
index 0000000..dcd5f9c
--- /dev/null
+++ b/cache_commit_tree_readme.go
@@ -0,0 +1,31 @@
+// SPDX-License-Identifier: AGPL-3.0-only
+// SPDX-FileContributor: Runxi Yu <https://runxiyu.org>
+
+package main
+
+import (
+ "html/template"
+
+ "github.com/dgraph-io/ristretto/v2"
+ "go.lindenii.runxiyu.org/lindenii-common/clog"
+)
+
+type treeReadmeCacheEntry struct {
+ DisplayTree []displayTreeEntry
+ ReadmeFilename string
+ ReadmeRendered template.HTML
+}
+
+var treeReadmeCache *ristretto.Cache[[]byte, treeReadmeCacheEntry]
+
+func init() {
+ var err error
+ treeReadmeCache, err = ristretto.NewCache(&ristretto.Config[[]byte, treeReadmeCacheEntry]{
+ NumCounters: 1e4,
+ MaxCost: 1 << 60,
+ BufferItems: 8192,
+ })
+ if err != nil {
+ clog.Fatal(1, "Error initializing indexPageCache: "+err.Error())
+ }
+}
diff --git a/cache_index_commits_display.go b/cache_index_commits_display.go
new file mode 100644
index 0000000..5d80943
--- /dev/null
+++ b/cache_index_commits_display.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 indexCommitsDisplayCache *ristretto.Cache[[]byte, []commitDisplay]
+
+func init() {
+ var err error
+ indexCommitsDisplayCache, err = ristretto.NewCache(&ristretto.Config[[]byte, []commitDisplay]{
+ NumCounters: 1e4,
+ MaxCost: 1 << 60,
+ BufferItems: 8192,
+ })
+ if err != nil {
+ clog.Fatal(1, "Error initializing indexCommitsCache: "+err.Error())
+ }
+}