1. 28 1月, 2017 2 次提交
  2. 20 1月, 2017 2 次提交
  3. 16 1月, 2017 1 次提交
  4. 11 1月, 2017 1 次提交
  5. 03 1月, 2017 1 次提交
  6. 22 12月, 2016 1 次提交
  7. 21 12月, 2016 4 次提交
  8. 20 12月, 2016 1 次提交
  9. 19 12月, 2016 1 次提交
  10. 16 12月, 2016 2 次提交
  11. 15 12月, 2016 1 次提交
  12. 08 12月, 2016 1 次提交
  13. 06 12月, 2016 1 次提交
  14. 03 12月, 2016 1 次提交
  15. 29 11月, 2016 1 次提交
  16. 23 11月, 2016 1 次提交
  17. 21 11月, 2016 1 次提交
    • Y
      Refactor cache refreshing/expiring · ffb9b3ef
      Yorick Peterse 提交于
      This refactors repository caching so it's possible to selectively
      refresh certain caches, instead of just expiring and refreshing
      everything.
      
      To allow this the various methods that were cached (e.g. "tag_count" and
      "readme") use a similar pattern that makes expiring and refreshing
      their data much easier.
      
      In this new setup caches are refreshed as follows:
      
      1. After a commit (but before running ProjectCacheWorker) we expire some
         basic caches such as the commit count and repository size.
      
      2. ProjectCacheWorker will recalculate the commit count, repository
         size, then refresh a specific set of caches based on the list of
         files changed in a push payload.
      
      This requires a bunch of changes to the various methods that may be
      cached. For one, data should not be cached if a branch used or the
      entire repository does not exist. To prevent all these methods from
      handling this manually this is taken care of in
      Repository#cache_method_output. Some methods still manually check for
      the existence of a repository but this result is also cached.
      
      With selective flushing implemented ProjectCacheWorker no longer uses an
      exclusive lease for all of its work. Instead this worker only uses a
      lease to limit the number of times the repository size is updated as
      this is a fairly expensive operation.
      ffb9b3ef
  18. 19 11月, 2016 2 次提交
  19. 18 11月, 2016 5 次提交
  20. 16 11月, 2016 2 次提交
  21. 11 11月, 2016 1 次提交
  22. 09 11月, 2016 1 次提交
  23. 07 11月, 2016 1 次提交
  24. 04 11月, 2016 1 次提交
  25. 01 11月, 2016 1 次提交
  26. 20 10月, 2016 2 次提交
  27. 13 10月, 2016 1 次提交