Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Sharkey
Manage
Activity
Members
Labels
Plan
Issues
337
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
24
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TransFem.org
Sharkey
Commits
8f41dfec
Commit
8f41dfec
authored
4 years ago
by
syuilo
Browse files
Options
Downloads
Patches
Plain Diff
perf(server): Reduce database query
parent
1f0abef0
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/misc/populate-emojis.ts
+47
-0
47 additions, 0 deletions
src/misc/populate-emojis.ts
src/models/repositories/note.ts
+3
-1
3 additions, 1 deletion
src/models/repositories/note.ts
src/models/repositories/notification.ts
+3
-0
3 additions, 0 deletions
src/models/repositories/notification.ts
with
53 additions
and
1 deletion
src/misc/populate-emojis.ts
+
47
−
0
View file @
8f41dfec
import
{
In
}
from
'
typeorm
'
;
import
{
Emojis
}
from
'
../models
'
;
import
{
Emoji
}
from
'
../models/entities/emoji
'
;
import
{
Note
}
from
'
../models/entities/note
'
;
import
{
Cache
}
from
'
./cache
'
;
import
{
isSelfHost
,
toPunyNullable
}
from
'
./convert-host
'
;
import
{
decodeReaction
}
from
'
./reaction-lib
'
;
const
cache
=
new
Cache
<
Emoji
|
null
>
(
1000
*
60
*
60
);
...
...
@@ -70,3 +73,47 @@ export async function populateEmojis(emojiNames: string[], noteUserHost: string
return
emojis
.
filter
((
x
):
x
is
PopulatedEmoji
=>
x
!=
null
);
}
export
function
aggregateNoteEmojis
(
notes
:
Note
[])
{
let
emojis
:
{
name
:
string
|
null
;
host
:
string
|
null
;
}[]
=
[];
for
(
const
note
of
notes
)
{
emojis
=
emojis
.
concat
(
note
.
emojis
.
map
(
e
=>
parseEmojiStr
(
e
,
note
.
userHost
)));
if
(
note
.
renote
)
{
emojis
=
emojis
.
concat
(
note
.
renote
.
emojis
.
map
(
e
=>
parseEmojiStr
(
e
,
note
.
renote
!
.
userHost
)));
if
(
note
.
renote
.
user
)
{
emojis
=
emojis
.
concat
(
note
.
renote
.
user
.
emojis
.
map
(
e
=>
parseEmojiStr
(
e
,
note
.
renote
!
.
userHost
)));
}
}
const
customReactions
=
Object
.
keys
(
note
.
reactions
).
map
(
x
=>
decodeReaction
(
x
)).
filter
(
x
=>
x
.
name
!=
null
)
as
typeof
emojis
;
emojis
=
emojis
.
concat
(
customReactions
);
if
(
note
.
user
)
{
emojis
=
emojis
.
concat
(
note
.
user
.
emojis
.
map
(
e
=>
parseEmojiStr
(
e
,
note
.
userHost
)));
}
}
return
emojis
.
filter
(
x
=>
x
.
name
!=
null
)
as
{
name
:
string
;
host
:
string
|
null
;
}[];
}
/**
* 与えられた絵文字のリストをデータベースから取得し、キャッシュに追加します
*/
export
async
function
prefetchEmojis
(
emojis
:
{
name
:
string
;
host
:
string
|
null
;
}[]):
Promise
<
void
>
{
const
notCachedEmojis
=
emojis
.
filter
(
emoji
=>
cache
.
get
(
`
${
emoji
.
name
}
${
emoji
.
host
}
`
)
==
null
);
const
emojisQuery
:
any
[]
=
[];
const
hosts
=
new
Set
(
notCachedEmojis
.
map
(
e
=>
e
.
host
));
for
(
const
host
of
hosts
)
{
emojisQuery
.
push
({
name
:
In
(
notCachedEmojis
.
filter
(
e
=>
e
.
host
===
host
).
map
(
e
=>
e
.
name
)),
host
:
host
});
}
const
_emojis
=
emojisQuery
.
length
>
0
?
await
Emojis
.
find
({
where
:
emojisQuery
,
select
:
[
'
name
'
,
'
host
'
,
'
url
'
]
})
:
[];
for
(
const
emoji
of
_emojis
)
{
cache
.
set
(
`
${
emoji
.
name
}
${
emoji
.
host
}
`
,
emoji
);
}
}
This diff is collapsed.
Click to expand it.
src/models/repositories/note.ts
+
3
−
1
View file @
8f41dfec
...
...
@@ -8,7 +8,7 @@ import { convertLegacyReaction, convertLegacyReactions, decodeReaction } from '.
import
{
toString
}
from
'
../../mfm/to-string
'
;
import
{
parse
}
from
'
../../mfm/parse
'
;
import
{
NoteReaction
}
from
'
../entities/note-reaction
'
;
import
{
populate
Emojis
}
from
'
../../misc/populate-emojis
'
;
import
{
aggregateNoteEmojis
,
populateEmojis
,
prefetch
Emojis
}
from
'
../../misc/populate-emojis
'
;
export
type
PackedNote
=
SchemaType
<
typeof
packedNoteSchema
>
;
...
...
@@ -259,6 +259,8 @@ export class NoteRepository extends Repository<Note> {
}
}
await
prefetchEmojis
(
aggregateNoteEmojis
(
notes
));
return
await
Promise
.
all
(
notes
.
map
(
n
=>
this
.
pack
(
n
,
me
,
{
...
options
,
_hint_
:
{
...
...
This diff is collapsed.
Click to expand it.
src/models/repositories/notification.ts
+
3
−
0
View file @
8f41dfec
...
...
@@ -6,6 +6,7 @@ import { SchemaType } from '../../misc/schema';
import
{
Note
}
from
'
../entities/note
'
;
import
{
NoteReaction
}
from
'
../entities/note-reaction
'
;
import
{
User
}
from
'
../entities/user
'
;
import
{
aggregateNoteEmojis
,
prefetchEmojis
}
from
'
../../misc/populate-emojis
'
;
export
type
PackedNotification
=
SchemaType
<
typeof
packedNotificationSchema
>
;
...
...
@@ -98,6 +99,8 @@ export class NotificationRepository extends Repository<Notification> {
myReactionsMap
.
set
(
target
,
myReactions
.
find
(
reaction
=>
reaction
.
noteId
===
target
)
||
null
);
}
await
prefetchEmojis
(
aggregateNoteEmojis
(
notes
));
return
await
Promise
.
all
(
notifications
.
map
(
x
=>
this
.
pack
(
x
,
{
_hintForEachNotes_
:
{
myReactions
:
myReactionsMap
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment