Hi Alex,
I have a Quiz Page in Laravel that operates across different domains. I'm storing all the quiz questions and answers on an API server using API requests. However, I'm encountering a rate limit issue with these API requests. Since customers can update quiz questions and answers immediately, I need to add the records as soon as possible. This urgency prevents me from using Laravel Queue, and I don't want to lose any quiz questions or answers from the customers.
What is the best way to handle this? Please advise.