Database Adapters¶
This section introduces database adapters designed to optimize performance and adhere to security best practices. Each adapter is tailored to leverage the unique features of its respective database system. Where supported, both synchronous and asynchronous versions are provided.
Available Adapters¶
Currently, the following adapters are available:
MongoDB Adapter: Offers both synchronous and asynchronous support for MongoDB databases. For more details, see the MongoDB Adapter Documentation.
Recommended Third-Party Libraries¶
The following third-party libraries are recommended for database interactions rather than a custom implementation:
SQLAlchemy: A powerful SQL toolkit and Object-Relational Mapping (ORM) library for Python. Refer to the SQLAlchemy Documentation.
redis-py: A Python client for Redis, ideal for Redis database interactions. Refer to the redis-py Documentation.