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
domain/models/submission.py defines Submission as a plain dataclass, so each instance carries a __dict__. When thousands of submissions are held in memory simultaneously during request processing, the per-object overhead accumulates.
domain/models/submission.pydefinesSubmissionas a plain dataclass, so each instance carries a__dict__. When thousands of submissions are held in memory simultaneously during request processing, the per-object overhead accumulates.