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 | |
---|---|---|
.. | ||
archiver | 1 month ago | |
commitstatus | 4 months ago | |
files | 1 week ago | |
gitgraph | 1 week ago | |
adopt.go | 2 weeks ago | |
adopt_test.go | 3 months ago | |
avatar.go | 2 months ago | |
avatar_test.go | 2 months ago | |
branch.go | 1 month ago | |
cache.go | 1 year ago | |
check.go | 2 months ago | |
collaboration.go | 3 months ago | |
collaboration_test.go | 4 months ago | |
commit.go | 1 year ago | |
contributors_graph.go | 10 months ago | |
contributors_graph_test.go | 3 months ago | |
create.go | 2 months ago | |
delete.go | 1 week ago | |
delete_test.go | 1 year ago | |
fork.go | 4 weeks ago | |
fork_test.go | 2 years ago | |
generate.go | 2 months ago | |
generate_test.go | 1 year ago | |
hooks.go | 1 year ago | |
init.go | 2 months ago | |
lfs.go | 1 year ago | |
lfs_test.go | 1 year ago | |
license.go | 5 months ago | |
license_test.go | 2 months ago | |
main_test.go | 1 year ago | |
merge_upstream.go | 1 month ago | |
migrate.go | 2 months ago | |
push.go | 2 months ago | |
repo_team.go | 2 months ago | |
repo_team_test.go | 3 months ago | |
repository.go | 5 months ago | |
repository_test.go | 2 years ago | |
setting.go | 1 year ago | |
template.go | 1 year ago | |
transfer.go | 4 weeks ago | |
transfer_test.go | 4 weeks ago |