1. 01 9月, 2017 1 次提交
  2. 31 8月, 2017 1 次提交
  3. 30 8月, 2017 1 次提交
  4. 29 8月, 2017 4 次提交
  5. 25 8月, 2017 1 次提交
  6. 24 8月, 2017 1 次提交
  7. 23 8月, 2017 1 次提交
    • Y
      Cache the number of open issues and merge requests · 6ec53f5d
      Yorick Peterse 提交于
      Every project page displays a navigation menu that in turn displays the
      number of open issues and merge requests. This means that for every
      project page we run two COUNT(*) queries, each taking up roughly 30
      milliseconds on GitLab.com. By caching these numbers and refreshing them
      whenever necessary we can reduce loading times of all these pages by up
      to roughly 60 milliseconds.
      
      The number of open issues does not include confidential issues. This is
      a trade-off to keep the code simple and to ensure refreshing the data
      only needs 2 COUNT(*) queries instead of 3. A downside is that if a
      project only has 5 confidential issues the counter will be set to 0.
      
      Because we now have 3 similar counting service classes the code
      previously used in Projects::ForksCountService has mostly been moved to
      Projects::CountService, which in turn is reused by the various service
      classes.
      
      Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/36622
      6ec53f5d
  8. 19 8月, 2017 1 次提交
  9. 14 8月, 2017 1 次提交
  10. 13 8月, 2017 1 次提交
  11. 10 8月, 2017 2 次提交
  12. 08 8月, 2017 3 次提交
  13. 01 8月, 2017 1 次提交
  14. 28 7月, 2017 1 次提交
    • Y
      Merge issuable "reopened" state into "opened" · 6ef87a20
      Yorick Peterse 提交于
      Having two states that essentially mean the same thing is very much like
      having a boolean "true" and boolean "mostly-true": it's rather silly.
      This commit merges the "reopened" state into the "opened" state while
      taking care of system notes still showing messages along the lines of
      "Alice reopened this issue".
      
      A big benefit from having only two states (opened and closed) is that
      indexing and querying becomes simpler and more performant. For example,
      to get all the opened queries we no longer have to query both states:
      
          SELECT *
          FROM issues
          WHERE project_id = 2
          AND state IN ('opened', 'reopened');
      
      Instead we can query a single state directly, which can be much faster:
      
          SELECT *
          FROM issues
          WHERE project_id = 2
          AND state = 'opened';
      
      Further, only having two states makes indexing easier as we will only
      ever filter (and thus scan an index) using a single value. Partial
      indexes could help but aren't supported on MySQL, complicating the
      development process and not being helpful for MySQL.
      6ef87a20
  15. 24 7月, 2017 1 次提交
  16. 14 7月, 2017 1 次提交
  17. 08 7月, 2017 2 次提交
  18. 07 7月, 2017 2 次提交
    • S
      Speed up `all_commit_shas` for new merge requests · 4c0864fd
      Sean McGivern 提交于
      For merge requests created after 9.4, we have a `merge_request_diff_commits`
      table we can get all the SHAs from very quickly. We just need to exclude these
      when we load from the legacy format, by ignoring diffs with no serialised
      commits.
      
      Once these have been migrated in the background, every MR will see this
      improvement.
      4c0864fd
    • S
      Add table for merge request commits · aff5c9f3
      Sean McGivern 提交于
      This is an ID-less table with just three columns: an association to the merge
      request diff the commit belongs to, the relative order of the commit within the
      merge request diff, and the commit SHA itself.
      
      Previously we stored much more information about the commits, so that we could
      display them even when they were deleted from the repo. Since 8.0, we ensure
      that those commits are kept around for as long as the target repo itself is, so
      we don't need to duplicate that data in the database.
      aff5c9f3
  19. 06 7月, 2017 3 次提交
    • Y
      Rename ActiverecordSerialize cop · e1a3bf30
      Yorick Peterse 提交于
      This cop has been renamed to ActiveRecordSerialize to match the way
      "ActiveRecord" is usually written.
      e1a3bf30
    • Y
      Added Cop to blacklist the use of `dependent:` · 8fbbf41e
      Yorick Peterse 提交于
      This is allowed for existing instances so we don't end up 76 offenses
      right away, but for new code one should _only_ use this if they _have_
      to remove non database data. Even then it's usually better to do this in
      a service class as this gives you more control over how to remove the
      data (e.g. in bulk).
      8fbbf41e
    • Y
      Add many foreign keys to the projects table · c63e3221
      Yorick Peterse 提交于
      This removes the need for relying on Rails' "dependent" option for data
      removal, which is _incredibly_ slow (even when using :delete_all) when
      deleting large amounts of data. This also ensures data consistency is
      enforced on DB level and not on application level (something Rails is
      really bad at).
      
      This commit also includes various migrations to add foreign keys to
      tables that eventually point to "projects" to ensure no rows get
      orphaned upon removing a project.
      c63e3221
  20. 26 6月, 2017 1 次提交
  21. 21 6月, 2017 2 次提交
  22. 16 6月, 2017 1 次提交
  23. 15 6月, 2017 1 次提交
  24. 01 6月, 2017 1 次提交
  25. 31 5月, 2017 1 次提交
  26. 30 5月, 2017 1 次提交
  27. 24 5月, 2017 2 次提交
  28. 19 5月, 2017 1 次提交