You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
dataclasses_json could be a performance bottleneck. dataclasses_json is reflection-based (like Dacite), which is an order of magnitude slower than codegen-based approaches (like cattrs).
Good to know. I kind of doubt it'll matter here? I only use it for metadata for the caches. The metadata is like 500B per chunk, 3-10K per cache, and roughly a similar amount per shard. Even with Python as slow as it is, I'd hope this isn't a big deal?
dataclasses_json could be a performance bottleneck. dataclasses_json is reflection-based (like Dacite), which is an order of magnitude slower than codegen-based approaches (like cattrs).
See:
The text was updated successfully, but these errors were encountered: