Skip to content

Support for Pipeline and Transaction in python #45

Closed
@reubenjohn

Description

@reubenjohn

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

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions