#Redis Json Partial Transaction Issue
6 messages · Page 1 of 1 (latest)
What I am looking for is similar to DynamoDB transaction,
if a single set failed the rest would fail and not set any data.
How can I achieve this with Redis?
You'd want to use a script here instad.
Redis Transactions execute every command in the transaction (unless it encounters a syntax error).
Hello Steve,
Would this be it? https://redis.io/docs/interact/programmability/eval-intro/
Thxs
Yeah, they won’t be true transactions, but you can roll back manually if something goes wrong