Skip to content

Cache branch and tag names as Redis sets

Nick Thomas requested to merge (removed):64251-branch-name-set-cache into master

What does this MR do?

The branch_names and tag_names methods of ::Repository are cached in Redis. These are large arrays (100KiB, json-encoded, for gitlab-ce) that we frequently use to check for the existence of a single member, particularly from the merge request widget when looking at source_branch_exists? and target_branch_exists?.

Converting these methods to be cached as redis sets allows the existence checks to be made using the SISMEMBER command. For queries that don't need the full list of branches - like the aforementioned merge request widget - this is significantly more efficient.

Does this MR meet the acceptance criteria?

Conformity

Performance and testing

Security

If this MR contains changes to processing or storing of credentials or tokens, authorization and authentication methods and other items described in the security review guidelines:

  • Label as security and @ mention @gitlab-com/gl-security/appsec
  • The MR includes necessary changes to maintain consistency between UI, API, email, or other methods
  • Security reports checked/validated by a reviewer from the AppSec team

Refs https://gitlab.com/gitlab-org/gitlab-ce/issues/65133

Edited by Nick Thomas

Merge request reports