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
0
Merge Requests
0
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
iv
gitlab-ce
Commits
68e4a682
Commit
68e4a682
authored
Jun 23, 2014
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'gitlab_cache_clear' into 'master'
Patch `rake cache:clear` for large amounts of keys
parents
33177866
cf0a3702
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
lib/tasks/cache.rake
lib/tasks/cache.rake
+6
-1
No files found.
lib/tasks/cache.rake
View file @
68e4a682
namespace
:cache
do
desc
"GITLAB | Clear redis cache"
task
:clear
=>
:environment
do
Rails
.
cache
.
clear
# Hack into Rails.cache until https://github.com/redis-store/redis-store/pull/225
# is accepted (I hope) and we can update the redis-store gem.
redis_store
=
Rails
.
cache
.
instance_variable_get
(
:@data
)
redis_store
.
keys
.
each_slice
(
1000
)
do
|
key_slice
|
redis_store
.
del
(
*
key_slice
)
end
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