An error occurred fetching the project authors.
  1. 23 Oct, 2015 3 commits
  2. 22 Oct, 2015 7 commits
  3. 21 Oct, 2015 6 commits
  4. 20 Oct, 2015 5 commits
  5. 19 Oct, 2015 4 commits
  6. 18 Oct, 2015 5 commits
  7. 17 Oct, 2015 1 commit
  8. 16 Oct, 2015 6 commits
  9. 15 Oct, 2015 3 commits
    • Kamil Trzcinski's avatar
      Implement when syntax in .gitlab-ci.yml · 0aa6061d
      Kamil Trzcinski authored
      0aa6061d
    • Yorick Peterse's avatar
      Changelog entry for issue page speedups · 9f581111
      Yorick Peterse authored
      9f581111
    • Yorick Peterse's avatar
      Improve performance of User.by_login · 72f428c7
      Yorick Peterse authored
      Performance is improved in two steps:
      
      1. On PostgreSQL an expression index is used for checking lower(email)
         and lower(username).
      2. The check to determine if we're searching for a username or Email is
         moved to Ruby. Thanks to @haynes for suggesting and writing the
         initial implementation of this.
      
      Moving the check to Ruby makes this method an additional 1.5 times
      faster compared to doing the check in the SQL query.
      
      With performance being improved I've now also tweaked the amount of
      iterations required by the User.by_login benchmark. This method now runs
      between 900 and 1000 iterations per second.
      72f428c7