-
Notifications
You must be signed in to change notification settings - Fork 10.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[MRG+1] doc for creating custom cache storage backend. #3692
Conversation
Codecov Report
@@ Coverage Diff @@
## master #3692 +/- ##
==========================================
+ Coverage 84.54% 84.72% +0.18%
==========================================
Files 167 168 +1
Lines 9420 9461 +41
Branches 1402 1407 +5
==========================================
+ Hits 7964 8016 +52
+ Misses 1199 1188 -11
Partials 257 257
|
Hey @Gallaecio, sorry for replying so late. I have made the changes suggested by you. Can you review this again? Can we delay merging this? I am working on the documentation for creating custom cache policy. I think, we should include that as well inside this pull request. |
@anubhavp28 Actually, I think that it is better to keep pull requests separate when possible. The smaller a pull request is, the easier it is to review it. |
@@ -349,7 +349,7 @@ HttpCacheMiddleware | |||
* :ref:`httpcache-storage-leveldb` | |||
|
|||
You can change the HTTP cache storage backend with the :setting:`HTTPCACHE_STORAGE` | |||
setting. Or you can also implement your own storage backend. | |||
setting. Or you can also :ref:`implement your own storage backend. <httpcache-storage-custom>` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
setting. Or you can also :ref:`implement your own storage backend. <httpcache-storage-custom>` | |
setting. Or you can also :ref:`implement your own storage backend <httpcache-storage-custom>`. |
Thanks @anubhavp28 for improved docs, and @Gallaecio for the review! |
Fixes #3683