当前位置:   article > 正文

[Python]peewee 使用经验

peewee使用dml语句,返回什么

peewee 使用经验

本文使用案例是基于 python2.7 实现

以下内容均为个人使用 peewee 的经验和遇到的坑,不会涉及过多的基本操作。所以,没有使用过 peewee,可以先阅读文档

正确性和覆盖面有待提高,如果遇到新的问题欢迎讨论。

一、介绍

759200-20170412114343250-1396689276.png

Peewee 是一个简单、轻巧的 Python ORM

  • 简单、轻巧、富有表现力(原词 expressive )的ORM
  • 支持python版本 2.6+ 和 3.2+
  • 支持数据库包括:sqlite, mysql and postgresql
  • 包含一堆实用的扩展在 playhouse 模块中

总而言之,peewee 可以完全可以应付个人或企业的中小型项目的 Model 层,上手容易,功能很强大。

二、基本使用方法

  1. from peewee import *
  2. db = SqliteDatabase('people.db')
  3. class BaseModel(Model):
  4. class Meta:
  5. database = db # This model uses the "people.db" database.
  6. class Person(BaseModel):
  7. name = CharField()
  8. birthday = DateField()
  9. is_relative = BooleanField()

基本的使用方法,推荐阅读文档--quickstart

三、推荐使用姿势

下面介绍一些我在使用过程的经验和遇到的坑,希望可以帮助大家更好的使用 peewee。

3.1 连接数据库

连接数据库时,推荐使用 playhouse 中的 db_url 模块。db_url 的 connect 方法可以通过传入的 URL 字符串,生成数据库连接。

3.1.1 connect(url, **connect_params)

通过传入的 url 字符串,创建一个数据库实例

url形如

  • mysql://user:passwd@ip:port/my_db 将创建一个 本地 MySQL 的 my_db 数据库的实例(will create a MySQLDatabase instance)
  • mysql+pool://user:passwd@ip:port/my_db?charset=utf8&max_connections=20&stale_timeout=300 将创建一个本地 MySQL 的 my_db 的连接池,最大连接数为20(In a multi-threaded application, up to max_connections will be opened. Each thread (or, if using gevent, greenlet) will have it’s own connection.),超时时间为300秒(will create a PooledMySQLDatabase instance)
    注意:charset 默认为utf8。如需要支持 emoji ,charset 设置为utf8mb4,同时保证创建数据库时的字符集设置正确CREATE DATABASE mydatabase CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;

支持的 schemes

  • apsw: APSWDatabase
  • mysql: MySQLDatabase
  • mysql+pool: PooledMySQLDatabase
  • postgres: PostgresqlDatabase
  • postgres+pool: PooledPostgresqlDatabase
  • postgresext: PostgresqlExtDatabase
  • postgresext+pool: PooledPostgresqlExtDatabase
  • sqlite: SqliteDatabase
  • sqliteext: SqliteExtDatabase
  • sqlite+pool: PooledSqliteDatabase
  • sqliteext+pool: PooledSqliteExtDatabase
3.1.2 推荐姿势
  1. from playhouse.db_url import connect
  2. from dock.common import config
  3. # url: mysql+pool://root:root@127.0.0.1:3306/appmanage?max_connections=300&stale_timeout=300
  4. mysql_config_url = config_dict.get('config').get('mysql').get('url')
  5. db = connect(url=mysql_config_url)

查看更多详情请移步官方文档:db-url

3.2 连接池的使用

peewee 的连接池,使用时需要显式的关闭连接。下面先说下为什么,最后会给出推荐的使用方法,避免进坑

3.2.1 为什么要显式的关闭连接

Connections will not be closed exactly when they exceed their stale_timeout. Instead, stale connections are only closed when a new connection is requested.

这里引用官方文档的提示。大致说:“超时连接不会自动关闭,只会在有新的请求时是才会关闭”。这里的request是指‘web 框架处理的请求’,peewee 源码片段:

  1. def _connect(self, *args, **kwargs):
  2. while True:
  3. try:
  4. # Remove the oldest connection from the heap.
  5. ts, conn = heapq.heappop(self._connections) # _connections是连接实例的list(pool)
  6. key = self.conn_key(conn)
  7. except IndexError:
  8. ts = conn = None
  9. logger.debug('No connection available in pool.')
  10. break
  11. else:
  12. if self._is_closed(key, conn):
  13. # This connecton was closed, but since it was not stale
  14. # it got added back to the queue of available conns. We
  15. # then closed it and marked it as explicitly closed, so
  16. # it's safe to throw it away now.
  17. # (Because Database.close() calls Database._close()).
  18. logger.debug('Connection %s was closed.', key)
  19. ts = conn = None
  20. self._closed.discard(key)
  21. elif self.stale_timeout and self._is_stale(ts):
  22. # If we are attempting to check out a stale connection,
  23. # then close it. We don't need to mark it in the "closed"
  24. # set, because it is not in the list of available conns
  25. # anymore.
  26. logger.debug('Connection %s was stale, closing.', key)
  27. self._close(conn, True)
  28. self._closed.discard(key)
  29. ts = conn = None
  30. else:
  31. break
  32. if conn is None:
  33. if self.max_connections and (
  34. len(self._in_use) >= self.max_connections):
  35. raise ValueError('Exceeded maximum connections.')
  36. conn = super(PooledDatabase, self)._connect(*args, **kwargs)
  37. ts = time.time()
  38. key = self.conn_key(conn)
  39. logger.debug('Created new connection %s.', key)
  40. self._in_use[key] = ts # 使用中的数据库连接实例dict
  41. return conn

根据 pool 库中的 _connect 方法的代码可知:每次在建立数据库连接时,会检查连接实例是否超时。但是需要注意一点:使用中的数据库连接实例(_in_use dict中的数据库连接实例),是不会在创建数据库连接时,检查是否超时的

因为这段代码中,每次创建连接实例,都是在 _connections(pool) 取实例,如果有的话就判断是否超时;如果没有的话就新建。

然而,使用中的数据库连接并不在 _connections 中,所以每次创建数据库连接实例时,并没有检测使用中的数据库连接实例是否超时。

只有调用连接池实例的 _close 方法。执行这个方法后,才会把使用后的连接实例放回到 _connections (pool)。

  1. def _close(self, conn, close_conn=False):
  2. key = self.conn_key(conn)
  3. if close_conn:
  4. self._closed.add(key)
  5. super(PooledDatabase, self)._close(conn) # 关闭数据库连接的方法
  6. elif key in self._in_use:
  7. ts = self._in_use[key]
  8. del self._in_use[key]
  9. if self.stale_timeout and self._is_stale(ts): # 到这里才会判断_in_use中的连接实例是否超时
  10. logger.debug('Closing stale connection %s.', key)
  11. super(PooledDatabase, self)._close(conn) # 超时的话,关闭数据库连接
  12. else:
  13. logger.debug('Returning %s to pool.', key)
  14. heapq.heappush(self._connections, (ts, conn)) # 没有超时的话,放回到pool中
3.2.2 如果不显式的关闭连接,会出现的问题

如果不调用_close方法的话,使用后 的数据库连接就一直不会关闭(两个含义:回到pool中和关闭数据库连接),这样会造成两个问题:

  1. 每次都是新建数据库连接,因为 pool 中没有数据库连接实例。会导致稍微有一点并发量就会返回Exceeded maximum connections.错误
  2. MySQL也是有 timeout 的,如果一个连接长时间没有请求的话,MySQL Server 就会关闭这个连接,但是,peewee的已建立(后面会解释为什么特指已建立的)的连接实例,并不知道 MySQL Server 已经关闭了,再去通过这个连接请求数据的话,就会返回 Error 2006: “MySQL server has gone away”错误,根据官方文档
3.2.3 推荐姿势

所以,每次操作完数据库就关闭连接实例。

  • 用法1:使用with

    1. def send_rule():
    2. with db.execution_context():
    3. # A new connection will be opened or, if using a connection pool,
    4. # pulled from the pool of available connections. Additionally, a
    5. # transaction will be started.
    6. for user in get_all_user():
    7. user_id = user['id']
    8. rule = Rule(user_id)
    9. rule_dict = rule.slack_rule(index)
    10. .....do something.....
  • 用法2:使用Flask hook

    1. @app.before_request
    2. def _db_connect():
    3. database.connect()
    4. #
    5. # This hook ensures that the connection is closed when we've finished
    6. # processing the request.
    7. @app.teardown_request
    8. def _db_close(exc):
    9. if not database.is_closed():
    10. database.close()
    11. #
    12. #
    13. # 更优雅的用法:
    14. from playhouse.flask_utils import FlaskDB
    15. from dock_fastgear.model.base import db
    16. #
    17. app = Flask(__name__)
    18. FlaskDB(app, db) # 这样就自动做了上面的事情(具体实现可查看http://docs.peewee-orm.com/en/latest/peewee/playhouse.html?highlight=Flask%20DB#flask-utils)

查看更多详情请移步官方文档:pool-apis

3.3 处理查询结果

这里没有什么大坑,就是有两点需要注意:

首先,查询的结果都是该 Model 的 object,注意不是 dict。如果想让结果为 dict,需要 playhouse 模块的工具方法进行转化:from playhouse.shortcuts import model_to_dict

其次,get方法只会返回一条记录

3.3.1 推荐姿势
  1. from playhouse.shortcuts import model_to_dict
  2. from model import HelloGitHub
  3. def read_from_db(input_vol):
  4. content_list = []
  5. category_object_list = HelloGitHub.select(HelloGitHub.category).where(HelloGitHub.vol == input_vol)\
  6. .group_by(HelloGitHub.category).order_by(HelloGitHub.category)
  7. for fi_category_object in category_object_list:
  8. hellogithub = HelloGitHub.select()\
  9. .where((HelloGitHub.vol == input_vol)
  10. & (HelloGitHub.category == fi_category_object.category))\
  11. .order_by(HelloGitHub.create_time)
  12. for fi_hellogithub in hellogithub:
  13. content_list.append(model_to_dict(fi_hellogithub))
  14. return content_list

四、常见错误及解决办法

4.1 'buffer' object has no attribute 'translate'

  • 错误信息: "'buffer' object has no attribute 'translate'"
  • 场景:BlobField 字段存储zlib compress压缩的数据
  • 解决办法:需要指定pymysql的版本小于0.6.7 否则会报错
  • 参考

4.2 Can't connect to MySQL server Lost connection to MySQL server during query

  • 错误信息:Can't connect to MySQL server Lost connection to MySQL server during query
  • 场景:向 RDS 中插入数据
  • 解决办法:因为请求的连接数过多,达到了 RDS 设置的连接数,所以需要调高 RDS 连接数
  • 参考

转载于:https://www.cnblogs.com/xueweihan/p/6698456.html

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/172681
推荐阅读
相关标签
  

闽ICP备14008679号