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
A similar bug that was occurring in #31345 is also occurring in the dynamodb driver.
Set cache driver to dynamodb and try the followings:
Cache::put('test', '1'); Cache::get('test'); // expected: '1', actual: 1 Cache::put('test', 1); Cache::get('test'); // expected = actual = 1 Cache::put('test', 1.0); Cache::get('test'); // expected: 1.0, actual 1 Cache::put('test', INF) Cache::get('test'); // expected INF, actual: DynamoDbException Cache::put('test', -INF) Cache::get('test'); // expected -INF, actual: DynamoDbException Cache::put('test', NAN); Cache::get('test');// expected: NAN, actual: DynamoDbException
The text was updated successfully, but these errors were encountered:
It looks like Taylor doesn't wants to accept a PR to change this at the time. You're always free to attempt a new one 👍
Sorry, something went wrong.
No branches or pull requests
Description:
A similar bug that was occurring in #31345 is also occurring in the dynamodb driver.
Steps To Reproduce:
Set cache driver to dynamodb and try the followings:
The text was updated successfully, but these errors were encountered: