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
It can help us update partial identities without resetting them. The method was introduced at pr #1063
with default impl:
def updateIdentityIds(username: Username, id: PublicAssetId, identityIdsToAdd: Seq[IdentityId], identityIdsToRemove: Seq[IdentityId]): Publisher[Void] = SMono(get(username, id)) .map(publicAsset => (publicAsset.identityIds.toSet ++ identityIdsToAdd.toSet) -- identityIdsToRemove.toSet) .flatMap(identityIds => SMono(update(username, id, identityIds)))
We can override it for Cassandra, PostgreSQL impl?
The text was updated successfully, but these errors were encountered:
Is it necessary to override this for cassandra and postgres? I dont feel like it is somehow
Sorry, something went wrong.
In the cassandra app we can leverage Caddandra indempotence by using a non frozen set
(so without read-patch-reset logic)
No branches or pull requests
It can help us update partial identities without resetting them.
The method was introduced at pr #1063
with default impl:
We can override it for Cassandra, PostgreSQL impl?
The text was updated successfully, but these errors were encountered: