开源 企业版 高校版 私有云 模力方舟 AI 队友
代码拉取完成,页面将自动刷新
加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
已有帐号? 立即登录
文件
master
分支 (2)
master
review
master
分支 (2)
master
review
克隆/下载
克隆/下载
提示
下载代码请复制以下命令到终端执行
为确保你提交的代码身份被 Gitee 正确识别,请执行以下命令完成配置
初次使用 SSH 协议进行代码克隆、推送等操作时,需按下述提示完成 SSH 配置
1 生成 RSA 密钥
2 获取 RSA 公钥内容,并配置到 SSH公钥
在 Gitee 上使用 SVN,请访问 使用指南
使用 HTTPS 协议时,命令行会出现如下账号密码验证步骤。基于安全考虑,Gitee 建议 配置并使用私人令牌 替代登录密码进行克隆、推送等操作
Username for 'https://gitee.com': userName
Password for 'https://userName@gitee.com': # 私人令牌
master
分支 (2)
master
review
microPython
/
docs
/
library
/
btree.rst
microPython
/
docs
/
library
/
btree.rst
btree.rst 5.74 KB
一键复制 编辑 原始数据 按行查看 历史
chenchi 提交于 2021年06月03日 16:44 +08:00 . first commit

:mod:`btree` -- simple BTree database

.. module:: btree
 :synopsis: simple BTree database

The btree module implements a simple key-value database using external storage (disk files, or in general case, a random-access stream). Keys are stored sorted in the database, and besides efficient retrieval by a key value, a database also supports efficient ordered range scans (retrieval of values with the keys in a given range). On the application interface side, BTree database work as close a possible to a way standard dict type works, one notable difference is that both keys and values must be bytes objects (so, if you want to store objects of other types, you need to serialize them to bytes first).

The module is based on the well-known BerkelyDB library, version 1.xx.

Example:

import btree

# First, we need to open a stream which holds a database
# This is usually a file, but can be in-memory database
# using uio.BytesIO, a raw flash partition, etc.
# Oftentimes, you want to create a database file if it doesn't
# exist and open if it exists. Idiom below takes care of this.
# DO NOT open database with "a+b" access mode.
try:
 f = open("mydb", "r+b")
except OSError:
 f = open("mydb", "w+b")

# Now open a database itself
db = btree.open(f)

# The keys you add will be sorted internally in the database
db[b"3"] = b"three"
db[b"1"] = b"one"
db[b"2"] = b"two"

# Assume that any changes are cached in memory unless
# explicitly flushed (or database closed). Flush database
# at the end of each "transaction".
db.flush()

# Prints b'two'
print(db[b"2"])

# Iterate over sorted keys in the database, starting from b"2"
# until the end of the database, returning only values.
# Mind that arguments passed to values() method are *key* values.
# Prints:
# b'two'
# b'three'
for word in db.values(b"2"):
 print(word)

del db[b"2"]

# No longer true, prints False
print(b"2" in db)

# Prints:
# b"1"
# b"3"
for key in db:
 print(key)

db.close()

# Don't forget to close the underlying stream!
f.close()

Functions

.. function:: open(stream, *, flags=0, pagesize=0, cachesize=0, minkeypage=0)

 Open a database from a random-access `stream` (like an open file). All
 other parameters are optional and keyword-only, and allow to tweak advanced
 parameters of the database operation (most users will not need them):

 * *flags* - Currently unused.
 * *pagesize* - Page size used for the nodes in BTree. Acceptable range
 is 512-65536. If 0, a port-specific default will be used, optimized for
 port's memory usage and/or performance.
 * *cachesize* - Suggested memory cache size in bytes. For a
 board with enough memory using larger values may improve performance.
 Cache policy is as follows: entire cache is not allocated at once;
 instead, accessing a new page in database will allocate a memory buffer
 for it, until value specified by *cachesize* is reached. Then, these
 buffers will be managed using LRU (least recently used) policy. More
 buffers may still be allocated if needed (e.g., if a database contains
 big keys and/or values). Allocated cache buffers aren't reclaimed.
 * *minkeypage* - Minimum number of keys to store per page. Default value
 of 0 equivalent to 2.

 Returns a BTree object, which implements a dictionary protocol (set
 of methods), and some additional methods described below.

Methods

.. method:: btree.close()

 Close the database. It's mandatory to close the database at the end of
 processing, as some unwritten data may be still in the cache. Note that
 this does not close underlying stream with which the database was opened,
 it should be closed separately (which is also mandatory to make sure that
 data flushed from buffer to the underlying storage).

.. method:: btree.flush()

 Flush any data in cache to the underlying stream.

.. method:: btree.__getitem__(key)
 btree.get(key, default=None, /)
 btree.__setitem__(key, val)
 btree.__delitem__(key)
 btree.__contains__(key)

 Standard dictionary methods.

.. method:: btree.__iter__()

 A BTree object can be iterated over directly (similar to a dictionary)
 to get access to all keys in order.

.. method:: btree.keys([start_key, [end_key, [flags]]])
 btree.values([start_key, [end_key, [flags]]])
 btree.items([start_key, [end_key, [flags]]])

 These methods are similar to standard dictionary methods, but also can
 take optional parameters to iterate over a key sub-range, instead of
 the entire database. Note that for all 3 methods, *start_key* and
 *end_key* arguments represent key values. For example, `values()`
 method will iterate over values corresponding to they key range
 given. None values for *start_key* means "from the first key", no
 *end_key* or its value of None means "until the end of database".
 By default, range is inclusive of *start_key* and exclusive of
 *end_key*, you can include *end_key* in iteration by passing *flags*
 of `btree.INCL`. You can iterate in descending key direction
 by passing *flags* of `btree.DESC`. The flags values can be ORed
 together.

Constants

.. data:: INCL

 A flag for `keys()`, `values()`, `items()` methods to specify that
 scanning should be inclusive of the end key.

.. data:: DESC

 A flag for `keys()`, `values()`, `items()` methods to specify that
 scanning should be in descending direction of keys.
Loading...
举报
举报成功
我们将于2个工作日内通过站内信反馈结果给你!
请认真填写举报原因,尽可能描述详细。
请选择举报类型
取消
发送
误判申诉

此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。

如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。

取消
提交

简介

HeliosSDK microPython组件
暂无标签
MIT
使用 MIT 开源许可协议
取消

发行版

暂无发行版

贡献者

全部

近期动态

不能加载更多了
编辑仓库简介
简介内容
主页
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/quecpython/microPython.git
git@gitee.com:quecpython/microPython.git
quecpython
microPython
microPython
master
点此查找更多帮助

搜索帮助

评论
仓库举报
回到顶部
登录提示
该操作需登录 Gitee 帐号,请先登录后再操作。
立即登录
没有帐号,去注册

AltStyle によって変換されたページ (->オリジナル) /