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
During periods of high concurrency, I encounter the following error:
Unhandled promise rejection with FiberError: Cannot resume a fiber that is not suspended in /app/vendor/react/async/src/SimpleFiber.php:28
Do you have any insights into why this is happening or what I could do to resolve it? Interestingly, when I work with the promises directly, everything functions correctly.
The text was updated successfully, but these errors were encountered:
@pfk84 Thank you for reporting, this definitely should not have happened!
Unfortunately, this is somewhat hard if not impossible to trace unless we have reproducible code that shows this is related to this project. Currently, I don't see anything that would cause this kind of error in this project and have no reason to believe this would be caused by anything related to the EVAL Redis command, as this project doesn't really employ any special handling for individual Redis commands.
I understand this may be frustrating, but as much as I'd love to help, I'm sure you understand this would be out of scope for this project on its own. If you need more personalized help for a commercial project, please shoot me an email and I'm happy to take a look at this together with you. Likewise, if you can reproduce this and reply with a public gist, I'm happy to take a look at this when time allows.
I hope this helps! 👍 If so, consider supporting this project, for example by becoming a sponsor ❤️
I’m not sure if this issue is specifically related to this library or ReactPHP, but currently, it only occurs with reactphp-redis.
When I run something like:
$counter = await($this->redis->eval(self::LUA_SCRIPT, 1, $uri, $period));
During periods of high concurrency, I encounter the following error:
Unhandled promise rejection with FiberError: Cannot resume a fiber that is not suspended in /app/vendor/react/async/src/SimpleFiber.php:28
Do you have any insights into why this is happening or what I could do to resolve it? Interestingly, when I work with the promises directly, everything functions correctly.
The text was updated successfully, but these errors were encountered: