Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
79c2ff41
Commit
79c2ff41
authored
May 25, 2021
by
Sean Arnold
Committed by
Nick Thomas
May 25, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use consistent cache naming for set caches: Expire new key format
parent
a44d81f1
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
86 additions
and
11 deletions
+86
-11
lib/gitlab/reactive_cache_set_cache.rb
lib/gitlab/reactive_cache_set_cache.rb
+6
-8
lib/gitlab/repository_set_cache.rb
lib/gitlab/repository_set_cache.rb
+5
-0
lib/gitlab/set_cache.rb
lib/gitlab/set_cache.rb
+12
-2
spec/lib/gitlab/repository_set_cache_spec.rb
spec/lib/gitlab/repository_set_cache_spec.rb
+25
-0
spec/tasks/cache/clear/redis_spec.rb
spec/tasks/cache/clear/redis_spec.rb
+38
-1
No files found.
lib/gitlab/reactive_cache_set_cache.rb
View file @
79c2ff41
...
...
@@ -11,12 +11,16 @@ module Gitlab
end
def
cache_key
(
key
)
"
#{
cache_type
}
:
#{
key
}
:set"
"
#{
cache_namespace
}
:
#{
key
}
:set"
end
def
new_cache_key
(
key
)
super
(
key
)
end
def
clear_cache!
(
key
)
with
do
|
redis
|
keys
=
read
(
key
).
map
{
|
value
|
"
#{
cache_
typ
e
}
:
#{
value
}
"
}
keys
=
read
(
key
).
map
{
|
value
|
"
#{
cache_
namespac
e
}
:
#{
value
}
"
}
keys
<<
cache_key
(
key
)
redis
.
pipelined
do
...
...
@@ -24,11 +28,5 @@ module Gitlab
end
end
end
private
def
cache_type
Gitlab
::
Redis
::
Cache
::
CACHE_NAMESPACE
end
end
end
lib/gitlab/repository_set_cache.rb
View file @
79c2ff41
...
...
@@ -17,6 +17,11 @@ module Gitlab
"
#{
type
}
:
#{
namespace
}
:set"
end
# NOTE Remove as part of #331319
def
new_cache_key
(
type
)
super
(
"
#{
type
}
:
#{
namespace
}
"
)
end
def
write
(
key
,
value
)
full_key
=
cache_key
(
key
)
...
...
lib/gitlab/set_cache.rb
View file @
79c2ff41
...
...
@@ -14,15 +14,21 @@ module Gitlab
"
#{
key
}
:set"
end
# NOTE Remove as part of https://gitlab.com/gitlab-org/gitlab/-/issues/331319
def
new_cache_key
(
key
)
"
#{
cache_namespace
}
:
#{
key
}
:set"
end
# Returns the number of keys deleted by Redis
def
expire
(
*
keys
)
return
0
if
keys
.
empty?
with
do
|
redis
|
keys
=
keys
.
map
{
|
key
|
cache_key
(
key
)
}
keys_to_expire
=
keys
.
map
{
|
key
|
cache_key
(
key
)
}
keys_to_expire
+=
keys
.
map
{
|
key
|
new_cache_key
(
key
)
}
# NOTE Remove as part of #331319
Gitlab
::
Instrumentation
::
RedisClusterValidator
.
allow_cross_slot_commands
do
redis
.
unlink
(
*
keys
)
redis
.
unlink
(
*
keys
_to_expire
)
end
end
end
...
...
@@ -73,5 +79,9 @@ module Gitlab
def
with
(
&
blk
)
Gitlab
::
Redis
::
Cache
.
with
(
&
blk
)
# rubocop:disable CodeReuse/ActiveRecord
end
def
cache_namespace
Gitlab
::
Redis
::
Cache
::
CACHE_NAMESPACE
end
end
end
spec/lib/gitlab/repository_set_cache_spec.rb
View file @
79c2ff41
...
...
@@ -7,6 +7,7 @@ RSpec.describe Gitlab::RepositorySetCache, :clean_gitlab_redis_cache do
let
(
:repository
)
{
project
.
repository
}
let
(
:namespace
)
{
"
#{
repository
.
full_path
}
:
#{
project
.
id
}
"
}
let
(
:gitlab_cache_namespace
)
{
Gitlab
::
Redis
::
Cache
::
CACHE_NAMESPACE
}
let
(
:cache
)
{
described_class
.
new
(
repository
)
}
describe
'#cache_key'
do
...
...
@@ -52,6 +53,24 @@ RSpec.describe Gitlab::RepositorySetCache, :clean_gitlab_redis_cache do
end
end
describe
'#write'
do
subject
(
:write_cache
)
{
cache
.
write
(
'branch_names'
,
[
'main'
])
}
it
'writes the value to the cache'
do
write_cache
redis_keys
=
Gitlab
::
Redis
::
Cache
.
with
{
|
redis
|
redis
.
scan
(
0
,
match:
"*"
)
}.
last
expect
(
redis_keys
).
to
include
(
"branch_names:
#{
namespace
}
:set"
)
expect
(
cache
.
fetch
(
'branch_names'
)).
to
contain_exactly
(
'main'
)
end
it
'sets the expiry of the set'
do
write_cache
expect
(
cache
.
ttl
(
'branch_names'
)).
to
be_within
(
1
).
of
(
cache
.
expires_in
.
seconds
)
end
end
describe
'#expire'
do
subject
{
cache
.
expire
(
*
keys
)
}
...
...
@@ -75,6 +94,12 @@ RSpec.describe Gitlab::RepositorySetCache, :clean_gitlab_redis_cache do
expect
(
cache
.
read
(
:foo
)).
to
be_empty
end
it
'expires the new key format'
do
expect_any_instance_of
(
Redis
).
to
receive
(
:unlink
).
with
(
cache
.
cache_key
(
:foo
),
cache
.
new_cache_key
(
:foo
))
# rubocop:disable RSpec/AnyInstanceOf
subject
end
end
context
'multiple keys'
do
...
...
spec/tasks/cache/clear/redis_spec.rb
View file @
79c2ff41
...
...
@@ -2,11 +2,15 @@
require
'rake_helper'
RSpec
.
describe
'clearing redis cache'
do
RSpec
.
describe
'clearing redis cache'
,
:clean_gitlab_redis_cache
do
before
do
Rake
.
application
.
rake_require
'tasks/cache'
end
shared_examples
'clears the cache'
do
it
{
expect
{
run_rake_task
(
'cache:clear:redis'
)
}.
to
change
{
redis_keys
.
size
}.
by
(
-
1
)
}
end
describe
'clearing pipeline status cache'
do
let
(
:pipeline_status
)
do
project
=
create
(
:project
,
:repository
)
...
...
@@ -20,5 +24,38 @@ RSpec.describe 'clearing redis cache' do
it
'clears pipeline status cache'
do
expect
{
run_rake_task
(
'cache:clear:redis'
)
}.
to
change
{
pipeline_status
.
has_cache?
}
end
it_behaves_like
'clears the cache'
end
describe
'clearing set caches'
do
context
'repository set'
do
let
(
:project
)
{
create
(
:project
)
}
let
(
:repository
)
{
project
.
repository
}
let
(
:cache
)
{
Gitlab
::
RepositorySetCache
.
new
(
repository
)
}
before
do
pending
"Enable as part of https://gitlab.com/gitlab-org/gitlab/-/issues/331319"
cache
.
write
(
:foo
,
[
:bar
])
end
it_behaves_like
'clears the cache'
end
context
'reactive cache set'
do
let
(
:cache
)
{
Gitlab
::
ReactiveCacheSetCache
.
new
}
before
do
cache
.
write
(
:foo
,
:bar
)
end
it_behaves_like
'clears the cache'
end
end
def
redis_keys
Gitlab
::
Redis
::
Cache
.
with
{
|
redis
|
redis
.
scan
(
0
,
match:
"*"
)
}.
last
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment