Tyler Kennedy
Tyler Kennedy
Resolved with 1.3.0
@wjakob That's fantastic, I'll give it a full read this weekend and give it a try. Relative speedup is **30-33%.**
Thanks! But `json.load` and `json.loads` aren't used for the `pysimdjson.load` and `pysimdjson.loads`, they have different signatures.
I understand your point, but at the same time the very first line of the readme states py3.9 and pg13+ as the supported matrix - is there actually any combination...
> Yes. Looks like that simdjson does not support every combination of the matrix (OS, platform), see https://pysimdjson.tkte.ch/: Mac OS on ARM is not supported. This already happened in the...
> The code is not ready to be merged! You can mark the PR as a draft to make sure it doesn't get accidentally merged :)
Well, that's a funny one. 1. When we get a path object, we convert it to a string with `as_str = PyObject_Str(content)`. 2. `str = PyUnicode_AsUTF8AndSize(as_str, &str_len)` to get a...
What's the value of `CONN_MAX_AGE` in the settings.py used for your workers? Have you enabled support for the thread-safe psycopg connection pools added in django 5.1? It's off by default...
> Actually: reading the code explains the code :D > > https://github.com/django/django/blob/787f3130f751283140fe2be8188eb5299552232d/django/db/backends/postgresql/base.py#L184-L194 > > (Makes me wonder if you can set `CONN_MAX_AGE` to None or if you have to either...
> I've looked around other background task libraries and this is surprisingly absent. I would have thought it's a more common requirement to only do "latest of". It's got edge...