gitea/routers/web/repo
Lunny Xiao 7df09e31fa
Move issue pin to an standalone table for querying performance (#33452)
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>
2025-02-17 11:28:37 -08:00
..
actions Refactor error system (#33610) 2025-02-16 22:13:17 -08:00
setting Refactor error system (#33610) 2025-02-16 22:13:17 -08:00
activity.go
attachment.go Refactor error system (#33610) 2025-02-16 22:13:17 -08:00
blame.go Refactor error system (#33610) 2025-02-16 22:13:17 -08:00
branch.go Refactor error system (#33610) 2025-02-16 22:13:17 -08:00
cherry_pick.go Refactor error system (#33610) 2025-02-16 22:13:17 -08:00
code_frequency.go Fix incorrect ref commit ID usage (#33331) 2025-01-20 07:43:49 +00:00
commit.go Refactor error system (#33610) 2025-02-16 22:13:17 -08:00
compare.go Refactor error system (#33610) 2025-02-16 22:13:17 -08:00
contributors.go Fix incorrect ref commit ID usage (#33331) 2025-01-20 07:43:49 +00:00
download.go Refactor error system (#33610) 2025-02-16 22:13:17 -08:00
editor.go Refactor error system (#33610) 2025-02-16 22:13:17 -08:00
editor_test.go
find.go
fork.go Refactor error system (#33610) 2025-02-16 22:13:17 -08:00
githttp.go Refactor error system (#33610) 2025-02-16 22:13:17 -08:00
githttp_test.go
helper.go Refactor error system (#33610) 2025-02-16 22:13:17 -08:00
issue.go Refactor error system (#33610) 2025-02-16 22:13:17 -08:00
issue_comment.go Refactor error system (#33610) 2025-02-16 22:13:17 -08:00
issue_content_history.go Refactor error system (#33610) 2025-02-16 22:13:17 -08:00
issue_dependency.go Refactor error system (#33610) 2025-02-16 22:13:17 -08:00
issue_label.go Refactor error system (#33610) 2025-02-16 22:13:17 -08:00
issue_label_test.go Remove duplicate "ResponseWriter.Status" method (#33346) 2025-01-22 06:37:52 +00:00
issue_list.go Refactor error system (#33610) 2025-02-16 22:13:17 -08:00
issue_lock.go
issue_new.go Refactor error system (#33610) 2025-02-16 22:13:17 -08:00
issue_page_meta.go Fix PR's target branch dropdown (#33589) 2025-02-14 05:21:31 +00:00
issue_pin.go Move issue pin to an standalone table for querying performance (#33452) 2025-02-17 11:28:37 -08:00
issue_poster.go Support public code/issue access for private repositories (#33127) 2025-01-14 01:53:34 +00:00
issue_stopwatch.go Refactor error system (#33610) 2025-02-16 22:13:17 -08:00
issue_suggestions.go Rework suggestion backend (#33538) 2025-02-10 16:24:05 +00:00
issue_test.go
issue_timetrack.go Refactor error system (#33610) 2025-02-16 22:13:17 -08:00
issue_view.go Move issue pin to an standalone table for querying performance (#33452) 2025-02-17 11:28:37 -08:00
issue_watch.go Refactor error system (#33610) 2025-02-16 22:13:17 -08:00
main_test.go
middlewares.go Refactor context repository (#33202) 2025-01-12 03:39:46 +00:00
migrate.go Refactor error system (#33610) 2025-02-16 22:13:17 -08:00
milestone.go Refactor error system (#33610) 2025-02-16 22:13:17 -08:00
packages.go Refactor context repository (#33202) 2025-01-12 03:39:46 +00:00
patch.go Support choose email when creating a commit via web UI (more) (#33445) 2025-01-31 02:36:18 +00:00
projects.go Refactor error system (#33610) 2025-02-16 22:13:17 -08:00
projects_test.go
pull.go Refactor error system (#33610) 2025-02-16 22:13:17 -08:00
pull_review.go Refactor error system (#33610) 2025-02-16 22:13:17 -08:00
pull_review_test.go
recent_commits.go Fix incorrect ref commit ID usage (#33331) 2025-01-20 07:43:49 +00:00
release.go Refactor error system (#33610) 2025-02-16 22:13:17 -08:00
release_test.go Validate that the tag doesn't exist when creating a tag via the web (#33241) 2025-01-14 09:27:35 +08:00
render.go Refactor error system (#33610) 2025-02-16 22:13:17 -08:00
repo.go Refactor error system (#33610) 2025-02-16 22:13:17 -08:00
search.go enable literal string for code search (#33590) 2025-02-16 11:28:06 +01:00
star.go Refactor web route handler (#33488) 2025-02-05 02:14:03 +08:00
topic.go
transfer.go Refactor web route handler (#33488) 2025-02-05 02:14:03 +08:00
treelist.go
view.go Refactor error system (#33610) 2025-02-16 22:13:17 -08:00
view_file.go Simplify context ref name (#33267) 2025-01-15 11:15:47 +08:00
view_home.go Fix "redirect link" handling (#33440) 2025-01-31 04:12:14 +08:00
view_readme.go Refactor context repository (#33202) 2025-01-12 03:39:46 +00:00
view_test.go
watch.go Refactor web route handler (#33488) 2025-02-05 02:14:03 +08:00
webgit.go Support choose email when creating a commit via web UI (more) (#33445) 2025-01-31 02:36:18 +00:00
wiki.go Refactor error system (#33610) 2025-02-16 22:13:17 -08:00
wiki_test.go Remove duplicate "ResponseWriter.Status" method (#33346) 2025-01-22 06:37:52 +00:00