Back

Good tip! Curious how you wrote a test for it? 😊

2

212

Actually, the tip should be not to serialize models in asynchronous queues.
Takes up to much memory with Redis.

2

203

Serialization isn't 100% accurate here since Laravel only stores Eloquent model IDs and re-hydrates from the database. But the problem is the same: you lose access to in-memory change state.

1

110

It does do that? I remember it differently. It was i believe Mohammed Said (Mr. Queues) who suggested to only pass the ID of the model and never serialize the model in a job.

You'd rather have job middleware or some method in your job that checks, if you still need to handle the job

2

248

look at that, and i naively thought serialization means transforming the object to a string representation and vice versa.
TIL! Thank you for enlighten me

151