mirror of https://github.com/go-gitea/gitea.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Noticed a SQL in gitea.com has a bigger load. It seems both `is_pull` and `pin_order` are not indexed columns in the database. ```SQL SELECT `id`, `repo_id`, `index`, `poster_id`, `original_author`, `original_author_id`, `name`, `content`, `content_version`, `milestone_id`, `priority`, `is_closed`, `is_pull`, `num_comments`, `ref`, `pin_order`, `deadline_unix`, `created_unix`, `updated_unix`, `closed_unix`, `is_locked`, `time_estimate` FROM `issue` WHERE (repo_id =?) AND (is_pull = 0) AND (pin_order > 0) ORDER BY pin_order ``` I came across a comment https://github.com/go-gitea/gitea/pull/24406#issuecomment-1527747296 from @delvh , which presents a more reasonable approach. Based on this, this PR will migrate all issue and pull request pin data from the `issue` table to the `issue_pin` table. This change benefits larger Gitea instances by improving scalability and performance. --------- Co-authored-by: wxiaoguang <wxiaoguang@gmail.com> |
1 week ago | |
---|---|---|
.. | ||
actions | 1 week ago | |
agit | 4 weeks ago | |
asymkey | 1 week ago | |
attachment | 4 months ago | |
auth | 2 weeks ago | |
automerge | 2 months ago | |
context | 1 week ago | |
contexttest | 2 weeks ago | |
convert | 1 week ago | |
cron | 2 weeks ago | |
doctor | 2 months ago | |
externalaccount | 7 months ago | |
feed | 1 month ago | |
forms | 3 weeks ago | |
git | 1 week ago | |
gitdiff | 2 weeks ago | |
indexer | 10 months ago | |
issue | 1 week ago | |
lfs | 4 weeks ago | |
mailer | 1 week ago | |
markup | 2 weeks ago | |
migrations | 3 weeks ago | |
mirror | 1 week ago | |
notify | 4 weeks ago | |
oauth2_provider | 3 months ago | |
org | 2 months ago | |
packages | 1 week ago | |
projects | 1 week ago | |
pull | 2 months ago | |
release | 2 months ago | |
repository | 1 week ago | |
secrets | 1 year ago | |
task | 9 months ago | |
uinotification | 1 year ago | |
user | 4 weeks ago | |
webhook | 3 weeks ago | |
webtheme | 10 months ago | |
wiki | 2 months ago |