We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Following code leads to infinite wait on file lock here. Maybe there should be some global Exception handler with unlock?
$fn = function () use ($cache) { $cache->load('key', function () { throw new Exception; }); }; try { $fn(); } catch (Exception $e) { $fn(); }
The text was updated successfully, but these errors were encountered:
ec691ce
Cache: fixed deadlock when exception is thrown in fallback [Closes #36]
dbd941a
396bacf
a88432b
@dg Thank you
Sorry, something went wrong.
f24234f
No branches or pull requests
Following code leads to infinite wait on file lock here. Maybe there should be some global Exception handler with unlock?
The text was updated successfully, but these errors were encountered: