in-memory database in Python

后端 未结 6 1915
没有蜡笔的小新
没有蜡笔的小新 2020-12-13 01:01

I\'m doing some queries in Python on a large database to get some stats out of the database. I want these stats to be in-memory so other programs can use them without going

6条回答
  •  清歌不尽
    2020-12-13 01:22

    I guess, SQLite3 will be the best option then.

    If possible, take a look at memcached. (for key-value pair, lighting fast!)

    UPDATE 1:

    HSQLDB for SQL Like tables. (no python support)

提交回复
热议问题