Closed
Description
The typescript client supports these commands: https://upstash.com/docs/oss/sdks/ts/redis/commands/transaction. Curious to know if these will be available in the Python SDK any time soon?
Pipeline Typescript SDK Usage
const p = redis.pipeline()
p.set('foo', 'bar')
p.get('foo')
const res = await p.exec()
Transaction Typescript SDK Usage
const tx = redis.multi()
tx.set('foo', 'bar')
tx.get('foo')
const res = await tx.exec()
Metadata
Metadata
Assignees
Labels
No labels