Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
D
Django-Redis-Cache
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Shared
Django-Redis-Cache
Commits
04a7f897
Commit
04a7f897
authored
Aug 10, 2015
by
Furr
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Allow delete_many to fail silently when an empty list is passed in
parent
9d53ad14
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
single.py
redis_cache/backends/single.py
+2
-1
No files found.
redis_cache/backends/single.py
View file @
04a7f897
...
...
@@ -34,7 +34,8 @@ class RedisCache(BaseRedisCache):
def
delete_many
(
self
,
keys
,
version
=
None
):
"""Remove multiple keys at once."""
versioned_keys
=
self
.
make_keys
(
keys
,
version
=
version
)
self
.
_delete_many
(
self
.
master_client
,
versioned_keys
)
if
versioned_keys
:
self
.
_delete_many
(
self
.
master_client
,
versioned_keys
)
def
clear
(
self
,
version
=
None
):
"""Flush cache keys.
...
...
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