| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2024-08-24 | Move stuff in API | UltraQbik | |
| 2024-08-24 | Update to data streams | UltraQbik | |
| Instead of sending full files, and therefore storing them in ram (which is not always possible), send data in chunks of 64KiB | |||
| 2024-08-23 | Update API and response class | UltraQbik | |
| 2024-08-23 | Update API | UltraQbik | |
| 2024-08-23 | Update API to give response | UltraQbik | |
| 2024-08-23 | Ditch asyncio, threading actually works much better | UltraQbik | |
| Problem was that I wanted to do things actually in parallel, and wanted to launch a task but without blocking the thread, asyncio was for whatever reason blocking the thread which was causing issues when 1 user was downloading a file and trying to do something else on the page (like load a new page or something) Threading ACTUALLY does do exactly what I want via `threading.Thread(...).start()`, so that will be used going forward Also, it seems to 3x faster that way, because with asyncio the page took 1 sec to load, with threading it takes 280 ms, which is weird even if we are doing things one at a time | |||
| 2024-08-22 | Update things slightly | UltraQbik | |
| 2024-08-22 | Kind of working API I guess? | UltraQbik | |
| 2024-08-22 | Update API thing | UltraQbik | |
| 2024-08-22 | API seems to work | UltraQbik | |
| 2024-08-22 | Massive refactoring addition of API | UltraQbik | |