Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 650 Bytes

File metadata and controls

28 lines (19 loc) · 650 Bytes

Async Client

The same quickstart flow using AsyncConfigClient with async/await.

What it shows

  • AsyncConfigClient as an async context manager (async with)
  • await client.get() for non-blocking reads
  • asyncio.gather() for concurrent reads — faster than sequential
  • await client.set_many() for atomic multi-writes

Run

cd examples
make setup
cd async-client
python main.py

Next

Learn more