Hello,
Is it possible to queue stuff for processing later which can be picked by the server?
Here’s an example flow:
- Players fight vs each other.
- Match ends, now I want to increase their level, check their quest completion etc.
- So I add it to a queue which can be processed by the server when possible.
This helps me not delay the response after the match ends as well as prevents processing of all heavy actions at once.
Regards