diff options
| author | Tom Christie | 2014-11-25 16:06:45 +0000 |
|---|---|---|
| committer | Tom Christie | 2014-11-25 16:06:45 +0000 |
| commit | 306916aca126dfbe61fe9d1f0052c5cce921b669 (patch) | |
| tree | e2f4036fa043ec501d5c85ae3e7e8fb91408f051 /docs/api-guide/throttling.md | |
| parent | 64d8e3dcb6846610e1908e067962b0c8457a86f8 (diff) | |
| parent | 84b34d43307704ad8240b871a48dcd6e73848cd1 (diff) | |
| download | django-rest-framework-306916aca126dfbe61fe9d1f0052c5cce921b669.tar.bz2 | |
Merge branch 'd0ugal-mkdocs'
Diffstat (limited to 'docs/api-guide/throttling.md')
| -rw-r--r-- | docs/api-guide/throttling.md | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/api-guide/throttling.md b/docs/api-guide/throttling.md index 147c16ff..3f668867 100644 --- a/docs/api-guide/throttling.md +++ b/docs/api-guide/throttling.md @@ -1,4 +1,4 @@ -<a class="github" href="throttling.py"></a> +source: throttling.py # Throttling @@ -83,7 +83,7 @@ The throttle classes provided by REST framework use Django's cache backend. You If you need to use a cache other than `'default'`, you can do so by creating a custom throttle class and setting the `cache` attribute. For example: class CustomAnonRateThrottle(AnonRateThrottle): - cache = get_cache('alternate') + cache = get_cache('alternate') You'll need to remember to also set your custom throttle class in the `'DEFAULT_THROTTLE_CLASSES'` settings key, or using the `throttle_classes` view attribute. @@ -147,15 +147,15 @@ For example, given the following views... class ContactListView(APIView): throttle_scope = 'contacts' ... - + class ContactDetailView(ApiView): throttle_scope = 'contacts' ... - class UploadView(APIView): + class UploadView(APIView): throttle_scope = 'uploads' ... - + ...and the following settings. REST_FRAMEWORK = { |
