agilord/postgres_pool
डार्ट में विस्तृत स्वचालित पुनर्संबंध पैरामीटर वाला पोस्टग्रेस कनेक्शन पूल।
- Stars
- 18
- Forks
- 10
- अंतिम पुश (UTC)
- 14 दिस॰ 2023
- प्रोजेक्ट स्थिति
- सक्रिय
भाषाएँDart
उपयोग की गई निर्भरताएँ
मूल README
यह अंग्रेज़ी मूल स्नैपशॉट है। नवीनतम सामग्री GitHub पर देखें।
README खोलें / बंद करें
A library to control a maximized number of connections to a single PostgreSQL server.
Discontinued
package:postgres from ^3.0.0 supports connection pooling as part of the core
library. Development and advanced pooling support will be migrated to that package.
Usage
Once you've created the PgPool object, you can:
- Use it as
PostgreSQLExecutionContext(frompackage:postgres). - Use
PgPool.runfor non-transactional batches with optional retry. - Use
PgPool.runTxfor transactional batches with optional retry.