V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
推荐学习书目
Learn Python the Hard Way
Python Sites
PyPI - Python Package Index
http://diveintopython.org/toc/index.html
Pocoo
值得关注的项目
PyPy
Celery
Jinja2
Read the Docs
gevent
pyenv
virtualenv
Stackless Python
Beautiful Soup
结巴中文分词
Green Unicorn
Sentry
Shovel
Pyflakes
pytest
Python 编程
pep8 Checker
Styles
PEP 8
Google Python Style Guide
Code Style from The Hitchhiker's Guide
pc10201
V2EX  ›  Python

python 多线程如何同时读写 sqlite?

  •  
  •   pc10201 · 2014-02-27 10:44:09 +08:00 · 13193 次点击
    这是一个创建于 3727 天前的主题,其中的信息可能已经有所发展或是发生改变。
    好像sqlite不支持多线程,或者说不是线程安全的
    各位大神有解决方案没?
    6 条回复    1970-01-01 08:00:00 +08:00
    cxe2v
        1
    cxe2v  
       2014-02-27 10:48:32 +08:00
    你自己在接入sqlite之前用个总的接口控制一下
    cxl008
        2
    cxl008  
       2014-02-27 10:49:30 +08:00
    sq = sqlite3.connect("xxxxx",check_same_thread = False)
    lovesky
        3
    lovesky  
       2014-02-27 10:49:36 +08:00
    sqlite 是线程安全的,python推荐用apsw

    https://www.sqlite.org/threadsafe.html
    https://code.google.com/p/apsw/
    cxl008
        4
    cxl008  
       2014-02-27 10:50:03 +08:00
    如果太密集的读写,特别是对同一个表操作的话,还是会出问题的
    dialox
        5
    dialox  
       2014-02-27 10:56:56 +08:00
    多线程同时读写sqlite是可以的,但是需要在所有的sql操作后都要检查返回码,如果是被占用的错误的,要有重试机制就可以了。
    geeks007
        6
    geeks007  
       2014-03-04 15:38:26 +08:00
    像sqlite这种文件型数据库应该写入时会锁住吧,多线程也没多大意义啊
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   2866 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 25ms · UTC 09:52 · PVG 17:52 · LAX 02:52 · JFK 05:52
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.