Writing a key-value store

前端 未结 7 1239
梦谈多话
梦谈多话 2021-02-04 08:12

I am looking to write a Key/value store (probably in python) mostly just for experience, and because it\'s something I think that is a very useful product. I have a couple of qu

7条回答
  •  走了就别回头了
    2021-02-04 09:12

    you can have a look at 'Berkley db' to see how how it works, it is a key/value DB, so you can use it directly, or as it is open-source see how it handles persistence, transactions and paging of most referred pages.

    here are python bindings to it http://www.jcea.es/programacion/pybsddb.htm

提交回复
热议问题