Sessions

class django_orjson.sessions.OrjsonSerializer[source]

An orjson-based session serializer, replacing Django’s built-in JSONSerializer.

Since both this serializer and Django’s built-in JSONSerializer produce standard JSON, switching between them is safe — existing sessions remain readable after the change.

Configure it in your settings:

SESSION_SERIALIZER = "django_orjson.sessions.OrjsonSerializer"