Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

README.md

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