Changes between Initial Version and Version 1 of Ticket #35757


Ignore:
Timestamp:
Sep 12, 2024, 9:08:45 AM (7 days ago)
Author:
Harm Verhagen
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #35757 – Description

    initial v1  
    22
    33I implemented a json api in django, when issuing multiple request simultaneously from javascript, the requests sometimes crash.
    4 from django.core.cache import cache
     4
    55
    66I have urls that do something like this.
    77
    88{{{
     9from django.core.cache import cache
     10
    911def example_url(request):
    1012    cache.incr("some key", 1)   # count requests
Back to Top