summaryrefslogtreecommitdiff
path: root/internal/federation/federator.go
diff options
context:
space:
mode:
authorLibravatar kim <89579420+NyaaaWhatsUpDoc@users.noreply.github.com>2025-01-22 12:42:12 +0000
committerLibravatar GitHub <noreply@github.com>2025-01-22 13:42:12 +0100
commit0a99901c657909a605a7f1c6a4ede282ba01ce43 (patch)
treea8b3f1bba879b051db41b18e1707d0c90e315a20 /internal/federation/federator.go
parent[chore]: Bump github.com/coreos/go-oidc/v3 from 3.11.0 to 3.12.0 (#3662) (diff)
downloadgotosocial-0a99901c657909a605a7f1c6a4ede282ba01ce43.tar.xz
[performance] reduce InboxForward->Create calls by partially implementing Exists() (#3647)
* alphabetical reordering * keep a cache of activity IDs we have handled creates for * reduce number of inbox forwarding create calls by partially implementing Exists() * increase cache size, since all we're storing is string keys
Diffstat (limited to 'internal/federation/federator.go')
-rw-r--r--internal/federation/federator.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/federation/federator.go b/internal/federation/federator.go
index 4e11c7d4d..b6f54906b 100644
--- a/internal/federation/federator.go
+++ b/internal/federation/federator.go
@@ -33,7 +33,7 @@ import (
var _ interface {
pub.CommonBehavior
pub.FederatingProtocol
-} = &Federator{}
+} = (*Federator)(nil)
type Federator struct {
db db.DB