3
Methods
1
Implementations
0
Required By
01

Methods

  • get
    (key: str) -> Any | None
    Get stored result for a key, or None if not found/expired
  • put
    (key, result, ttl_seconds=None) -> None
    Store a result for a key with optional TTL
  • delete
    (key: str) -> bool
    Delete a stored result, returns True if found
02

Implementations

  • InMemoryIdempotencyStore
    In-memory store for testing and development
03

Required By

Not required by any components