mirror of
https://github.com/go-gitea/gitea.git
synced 2025-12-14 21:15:18 +08:00
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> |
||
|---|---|---|
| .. | ||
| assignees_test.go | ||
| assignees.go | ||
| comment_code.go | ||
| comment_list.go | ||
| comment_test.go | ||
| comment.go | ||
| content_history_test.go | ||
| content_history.go | ||
| dependency_test.go | ||
| dependency.go | ||
| issue_index.go | ||
| issue_label_test.go | ||
| issue_label.go | ||
| issue_list_test.go | ||
| issue_list.go | ||
| issue_lock.go | ||
| issue_pin.go | ||
| issue_project.go | ||
| issue_search.go | ||
| issue_stats.go | ||
| issue_test.go | ||
| issue_update.go | ||
| issue_user_test.go | ||
| issue_user.go | ||
| issue_watch_test.go | ||
| issue_watch.go | ||
| issue_xref_test.go | ||
| issue_xref.go | ||
| issue.go | ||
| label_test.go | ||
| label.go | ||
| main_test.go | ||
| milestone_list.go | ||
| milestone_test.go | ||
| milestone.go | ||
| pull_list_test.go | ||
| pull_list.go | ||
| pull_test.go | ||
| pull.go | ||
| reaction.go | ||
| review_list.go | ||
| review_test.go | ||
| review.go | ||
| stopwatch_test.go | ||
| stopwatch.go | ||
| tracked_time_test.go | ||
| tracked_time.go | ||