重庆小潘seo博客

当前位置:首页 > 重庆网络营销 > 小潘杂谈 >

小潘杂谈

数据是怎么存储在mysql?

时间:2020-09-22 08:00:06 作者:重庆seo小潘 来源:
我们都知道mysql数据库能存储大量数据,但是你知道数据是怎么存储在mysql中的吗? 一般将数据保存到MySQL中有两种方式,同步模式和异步模式。 同步模式 同步模式是采用SQL语句,将数据插入到数据库中。但是要注意的是Scrapy的解析速度要远大于MySQL的入库速

我们都知道mysql数据库能存储大量数据,但是你知道数据是怎么存储在mysql中的吗?

数据是怎么存储在mysql?

一般将数据保存到MySQL中有两种方式,同步模式和异步模式。

同步模式

同步模式是采用SQL语句,将数据插入到数据库中。但是要注意的是Scrapy的解析速度要远大于MySQL的入库速度,当有大量解析的时候,MySQL的入库就可能会阻塞。import MySQLdbclass MysqlPipeline(object):def __init__(self):self.conn = MySQLdb.connect('127.0.0.1','root','root','article_spider',charset="utf8",use_unicode=True)self.cursor = self.conn.cursor()def process_item(self, item, spider):insert_sql = """insert into jobbole_article(title,create_date,url,url_object_id) VALUES (%s,%s,%s,%s)"""self.cursor.execute(insert_sql,(item["title"],item["create_date"],item["url"],item["url_object_id"]))self.conn.commit()异步模式

采用同步模式可能会产生阻塞,我们可以使用Twisted将MySQL的入库和解析变成异步操作,而不是简单的execute,commit同步操作。

关于MySQL的配置,我们可以直接在配置文件配置数据库:MYSQL_HOST = "127.0.0.1"MYSQL_DBNAME = "article_spider"MYSQL_USER = "root"MYSQL_PASSWORD = "root"在settings中的配置,我们通过在pipeline中定义from_settings获取settings对象,可以直接获取settings配置文件中的值。

使用Twisted提供的异步容器连接MySQL:import MySQLdbimport MySQLdb.cursorsfrom twisted.enterpriseimport adbapi使用adbapi可以使mysqldb的一些操作变成异步化的操作使用cursors进行sql语句的执行和提交

代码部分:class MysqlTwistedPipline(object):def __init__(self,dbpool):self.dbpool = dbpool@classmethoddef from_settings(cls,settings):dbparms = dict(host = settings["MYSQL_HOST"],db= settings["MYSQL_DBNAME"],user = settings["MYSQL_USER"],passwd = settings["MYSQL_PASSWORD"],charset = 'utf8',cursorclass = MySQLdb.cursors.DictCursor,use_unicode=True,)dbpool = adbapi.ConnectionPool("MySQLdb",**dbparms)return cls(dbpool)def process_item(self, item, spider):#使用Twisted将mysql插入变成异步执行#runInteraction可以将传入的函数变成异步的query = self.dbpool.runInteraction(self.do_insert,item)#处理异常query.addErrback(self.handle_error,item,spider)def handle_error(self,failure,item,spider):#处理异步插入的异常print(failure)def do_insert(self,cursor,item):#会从dbpool取出cursor#执行具体的插入insert_sql = """insert into jobbole_article(title,create_date,url,url_object_id) VALUES (%s,%s,%s,%s)"""cursor.execute(insert_sql, (item["title"], item["create_date"], item["url"], item["url_object_id"]))#拿传进的cursor进行执行,并且自动完成commit操作以上代码部分,除了do_insert之外,其它均可复用。以上就是数据是怎么存储在mysql?的详细内容,更多请关注小潘博客其它相关文章!