Changes between Version 1 and Version 2 of Ticket #23517, comment 6
- Timestamp:
- Oct 10, 2025, 7:26:06 AM (4 days ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #23517, comment 6
v1 v2 1 1 Discussed and worked on this during the Django on the med event https://djangomed.eu/ 2 2 3 One conclusion was that despite thisbeing possible with the current hooks to implement this at the storage backend, it is a non-trivial endeavour and needs to be implemented by any backend. Whereas it can be solved relatively simply within the collectstatic command in a way that can support any existing and future backends.3 One conclusion was that despite it being possible with the current hooks to implement this at the storage backend, it is a non-trivial endeavour and needs to be implemented by any backend. Whereas it can be solved relatively simply within the collectstatic command in a way that can support any existing and future backends. 4 4 5 5 This PR shows a working implementation based on a threadpool https://github.com/django/django/pull/19935 including some benchmarks