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
ProxyCache#next_id should create an identifier for a record created in the current transaction which was not used before.
ProxyCache#next_id
It currently increments an identifier of the format new_\d+ which leads to problems in the following case:
new_\d+
We should most likely be able to simply use SecureRandom for identifier generation and just check for existence.
SecureRandom
The text was updated successfully, but these errors were encountered:
No branches or pull requests
ProxyCache#next_id
should create an identifier for a record created in the current transaction which was not used before.It currently increments an identifier of the format
new_\d+
which leads to problems in the following case:We should most likely be able to simply use
SecureRandom
for identifier generation and just check for existence.The text was updated successfully, but these errors were encountered: