- 欢迎来到 GINO 的文档
- 上手教程
- 进阶用法
- 原理说明
- 参考手册
- API 参考
- gino.bakery module
- gino.api module
- gino.declarative module
- gino.schema module
- gino.crud module
- gino.json_support module
- gino.engine module
- gino.loader module
- gino.dialects.asyncpg module
- gino.dialects.base module
- gino.transaction module
- gino.dialects package
- gino.dialects.aiomysql module
- gino.ext package
- gino.aiocontextvars module
- gino.exceptions module
- gino.strategies module
- 扩展
- 版本历史
- API 参考
文章来源于网络收集而来,版权归原创者所有,如有侵权请及时联系!
连接池
Other than the default connection pool, alternative pools can be used in their own use cases. There are options from dialects (currently only NullPool
), and users can define their own pools. The base class should be Pool
.
To use non-default pools in raw GINO:
from gino.dialects.asyncpg import NullPool create_engine('postgresql://...', pool_class=NullPool)
To use non-default pools in extensions (taking Sanic as an example):
from gino.dialects.asyncpg import NullPool from gino.ext.sanic import Gino app = sanic.Sanic() app.config.DB_HOST = 'localhost' app.config.DB_KWARGS = dict( pool_class=NullPool, ) db = Gino() db.init_app(app)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论