Changes between Version 3 and Version 4 of AsyncProject


Ignore:
Timestamp:
Aug 2, 2019, 8:52:54 PM (5 years ago)
Author:
Andrew Godwin
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • AsyncProject

    v3 v4  
    2525The current async views branch runs code mostly successfully, but some Django tests fail, occasionally in odd ways. There's a lot of valuable work in taking a test failure and working out the root cause so it can be fixed in the async views patch. This is especially important to trace down places where database connections are accessed from more than one thread (which is invalid, but happens with incorrect use of sync code in an async thread).
    2626
     27=== Class-based views
     28
     29There needs to be an async version of these (either as_async_view, or a new base class)
     30
     31=== Async namespace helper
     32
     33We want to namespace things as {{{cache.async.get}}} - this could do with a helper class that can be provided as the "async" member on classes and automatically proxy some things through to the sync versions.
     34
    2735=== Benchmarking
    2836
Back to Top