agusrichard / devops-workbook

Learning notes and practice projects, all about DevOps, SRE, AWS, etc
18 stars 7 forks source link

Consider using aiodynamo #3

Open dimaqq opened 2 years ago

dimaqq commented 2 years ago

https://github.com/HENNGE/aiodynamo is an asyncio dynamodb client. it has a better API and it's also faster than *boto libs.

Since this workbook uses FastAPI, which supports asyncio natively, it's a good fit.

agusrichard commented 2 years ago

Hi @dimaqq

I've looked at the docs. That's incredibly good and obviously worth learning. I guess I'll play with it so my project can support async process, and check is there any real performance improvement by doing some benchmarking.

Thanks a lot for your suggestion!