Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-04-21Add latest changes from gitlab-org/gitlab@13-11-stable-eev13.11.0-rc43GitLab Bot
2021-02-18Add latest changes from gitlab-org/gitlab@13-9-stable-eev13.9.0-rc42GitLab Bot
2020-09-19Add latest changes from gitlab-org/gitlab@13-4-stable-eeGitLab Bot
2020-08-20Add latest changes from gitlab-org/gitlab@13-3-stable-eeGitLab Bot
2020-07-20Add latest changes from gitlab-org/gitlab@13-2-stable-eeGitLab Bot
2020-03-17Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-02-12Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-10Revert "Revert "Cache branch and tag names as Redis sets""Nick Thomas
This reverts commit c6ccc07f48c7c1f9da43ecd82015500a4340544d.
2019-08-29Revert "Cache branch and tag names as Redis sets"Nick Thomas
This reverts commit 0eff75fa2b6691b6fba31fcc2842f51debd249a9.
2019-08-22Add frozen_string_literal to lib part 2Thong Kuah
Using the sed script from https://gitlab.com/gitlab-org/gitlab-ce/issues/59758
2019-08-16Cache branch and tag names as Redis setsNick Thomas
This allows us to check inclusion for the *_exists? methods without downloading the full list of branch names, which is over 100KiB in size for gitlab-ce at the moment.
2018-09-28Cache `Repository#exists?` false in RequestStoreMichael Kozono
* Only truthy values are cached in Redis. * All values are cached in RequestStore and in an instance variable.
2018-09-28Extract `Repository.memoize_method` methodMichael Kozono
And reuse `Gitlab::Utils::StrongMemoize`. There is a subtle behavior change required to reuse StrongMemoize in this case. The early fallback check now occurs *before* reading the memoized value instead of after. I think this is fine since a memoized value should only exist if `exists?` is also already memoized as `true`.
2018-06-29Expire correct method caches after HEAD changedImre Farkas
2018-03-07Refactor RepositoryCache to make it usable in other classesAlejandro Rodríguez