Kyle Henfrey
Kyle Henfrey
This is what I feared, how would you go about iterating over a 10million row table? I've created a workaround myself but looking for best practices ```PYTHON first = Character.order_by('id',...
Chunking the result would imply that you're pulling n rows at a time from the database, that's what I think personally Model.chunk(100) would pull 100 rows, but you can loop...
I'd prefer not to send a 4GB sql file, not only would it take forever to import but it's just way easier to generate a new table and seed it...
Sorry for delay, this still calls select * from table ``` ID USER HOST DB COMMAND TIME STATE Info TIME_MS 787187 evequi localhost evequi Query 5 Sending data SELECT *...
We've gone full circle ```PYTHON for characters in Character.order_by('id', 'asc').chunk(100): print(characters) ``` this runs a SELECT * FROM characters, once again loading all 10m rows into memory before chunking
You can close this if you what, but as it stands the chunk helper is absolutely useless, you say it doesn't get stored in memory which is insane that you...
Another note to add If you drag a user or channel while your push to talk is activated and then let go of your push to talk while the user...
As an example I've created a quick video to demonstrate the unwanted behaviour Any time the PTT is activated in the video for an extended period of time the PTT...
May help to give you more information There's 3 things I've noticed with the latest/characters/{id} endpoint A tonne of 500 status codes with the message `Undefined 429 response. Original message:...
Maybe something like ```JS /** * GET /api/v1/albums * @summary This is the summary or description of the endpoint * @tags album * @return {array} 200 - success response -...