Skip to content

Commit

Permalink
[performance] replace account emojis relational query with separate c…
Browse files Browse the repository at this point in the history
…alls to emojiDB to rely on cache (#1074)

Signed-off-by: kim <[email protected]>

Signed-off-by: kim <[email protected]>
  • Loading branch information
NyaaaWhatsUpDoc authored Nov 18, 2022
1 parent dccc2ee commit 45ae719
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
20 changes: 17 additions & 3 deletions internal/db/bundb/account.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ import (
type accountDB struct {
conn *DBConn
cache *result.Cache[*gtsmodel.Account]
emojis *emojiDB
status *statusDB
}

Expand Down Expand Up @@ -63,8 +64,7 @@ func (a *accountDB) newAccountQ(account *gtsmodel.Account) *bun.SelectQuery {
NewSelect().
Model(account).
Relation("AvatarMediaAttachment").
Relation("HeaderMediaAttachment").
Relation("Emojis")
Relation("HeaderMediaAttachment")
}

func (a *accountDB) GetAccountByID(ctx context.Context, id string) (*gtsmodel.Account, db.Error) {
Expand Down Expand Up @@ -149,7 +149,8 @@ func (a *accountDB) GetInstanceAccount(ctx context.Context, domain string) (*gts
}

func (a *accountDB) getAccount(ctx context.Context, lookup string, dbQuery func(*gtsmodel.Account) error, keyParts ...any) (*gtsmodel.Account, db.Error) {
return a.cache.Load(lookup, func() (*gtsmodel.Account, error) {
// Fetch account from database cache with loader callback
account, err := a.cache.Load(lookup, func() (*gtsmodel.Account, error) {
var account gtsmodel.Account

// Not cached! Perform database query
Expand All @@ -159,6 +160,19 @@ func (a *accountDB) getAccount(ctx context.Context, lookup string, dbQuery func(

return &account, nil
}, keyParts...)
if err != nil {
return nil, err
}

if len(account.EmojiIDs) > 0 {
// Set the account's related emojis
account.Emojis, err = a.emojis.emojisFromIDs(ctx, account.EmojiIDs)
if err != nil {
return nil, err
}
}

return account, nil
}

func (a *accountDB) PutAccount(ctx context.Context, account *gtsmodel.Account) db.Error {
Expand Down
1 change: 1 addition & 0 deletions internal/db/bundb/bundb.go
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,7 @@ func NewBunDBService(ctx context.Context) (db.DB, error) {
user := &userDB{conn: conn}

// Setup DB cross-referencing
account.emojis = emoji
account.status = status
admin.users = user
status.accounts = account
Expand Down

0 comments on commit 45ae719

Please sign in to comment.