-
- Downloads
Merge branch 'feature/precalculate-authorized-projects' into 'master'
Precalculate authorized projects in database ## What does this MR do? It caches user's authorized projects in database instead of using multiple unions, which should simplify and speed-up things since this operation (getting authorized projects) is used a lot. ## Are there points in the code the reviewer needs to double check? Did we miss a scenario where we need to refresh the list of projects? ## Does this MR meet the acceptance criteria? - [x] [CHANGELOG](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CHANGELOG) entry added - [ ] ~~[Documentation created/updated](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/doc/development/doc_styleguide.md)~~ - [ ] ~~API support added~~ - Tests - [x] Added for this feature/bug - [x] All builds are passing - [x] Conform by the [merge request performance guides](http://docs.gitlab.com/ce/development/merge_request_performance_guidelines.html) - [x] Conform by the [style guides](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CONTRIBUTING.md#style-guides) - [x] Branch has no merge conflicts with `master` (if it does - rebase it please) - [x] [Squashed related commits together](https://git-scm.com/book/en/Git-Tools-Rewriting-History#Squashing-Commits) ## What are the relevant issue numbers? #23150 See merge request !6839
Showing
- app/models/concerns/select_for_project_authorization.rb 9 additions, 0 deletionsapp/models/concerns/select_for_project_authorization.rb
- app/models/group.rb 13 additions, 0 deletionsapp/models/group.rb
- app/models/member.rb 13 additions, 0 deletionsapp/models/member.rb
- app/models/project.rb 2 additions, 31 deletionsapp/models/project.rb
- app/models/project_authorization.rb 8 additions, 0 deletionsapp/models/project_authorization.rb
- app/models/project_group_link.rb 7 additions, 0 deletionsapp/models/project_group_link.rb
- app/models/user.rb 50 additions, 16 deletionsapp/models/user.rb
- app/services/projects/create_service.rb 2 additions, 0 deletionsapp/services/projects/create_service.rb
- app/services/user_project_access_changed_service.rb 9 additions, 0 deletionsapp/services/user_project_access_changed_service.rb
- app/workers/authorized_projects_worker.rb 15 additions, 0 deletionsapp/workers/authorized_projects_worker.rb
- changelogs/unreleased/feature-precalculate-authorized-projects.yml 4 additions, 0 deletions...s/unreleased/feature-precalculate-authorized-projects.yml
- config/sidekiq_queues.yml 1 addition, 0 deletionsconfig/sidekiq_queues.yml
- db/fixtures/development/04_project.rb 1 addition, 0 deletionsdb/fixtures/development/04_project.rb
- db/fixtures/development/17_cycle_analytics.rb 1 addition, 0 deletionsdb/fixtures/development/17_cycle_analytics.rb
- db/fixtures/support/serialized_transaction.rb 9 additions, 0 deletionsdb/fixtures/support/serialized_transaction.rb
- db/migrate/20161010142410_create_project_authorizations.rb 15 additions, 0 deletionsdb/migrate/20161010142410_create_project_authorizations.rb
- db/migrate/20161017091941_add_authorized_projects_populated_to_users.rb 9 additions, 0 deletions...61017091941_add_authorized_projects_populated_to_users.rb
- db/schema.rb 11 additions, 0 deletionsdb/schema.rb
- lib/gitlab/database.rb 7 additions, 0 deletionslib/gitlab/database.rb
- spec/finders/group_projects_finder_spec.rb 4 additions, 1 deletionspec/finders/group_projects_finder_spec.rb
Loading
Please register or sign in to comment