欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

纯Python开发的nosql数据库CodernityDB介绍和使用实例

程序员文章站 2023-11-04 13:24:04
看看这个logo,有些像python的小蛇吧 。这次介绍的数据库codernitydb是纯python开发的。 先前用了下tinydb这个本地数据库,也在一个api服...

看看这个logo,有些像python的小蛇吧 。这次介绍的数据库codernitydb是纯python开发的。

纯Python开发的nosql数据库CodernityDB介绍和使用实例

先前用了下tinydb这个本地数据库,也在一个api服务中用了下,一开始觉得速度有些不给力,结果一看实现的方式,真是太鸟了,居然就是json的存储,连个二进制压缩都没有。  这里介绍的codernitydb 也是纯开发的一个小数据库。

codernitydb是开源的,纯python语言(没有第三方依赖),快速,多平台的nosql型数据库。它有可选项支持http服务版本(codernitydb-http),和python客户端库(codernitydb-pyclient),它目标是100%兼容嵌入式的版本。

主要特点

1.pyhon原生支持
2.多个索引
3.快(每秒可达50 000次insert操作)
4.内嵌模式(默认)和服务器模式(codernitydb-http),加上客户端库(codernitydb-pyclient),能够100%兼容
5.轻松完成客户的存储

codernitydb数据库操作代码实例:

复制代码 代码如下:

insert(simple)
 
from codernitydb.database import database
 
db = database('/tmp/tut1')
db.create()
 
insertdict = {'x': 1}
print db.insert(insertdict)
 
 
 
 
insert
 
from codernitydb.database import database
from codernitydb.hash_index import hashindex
 
class withxindex(hashindex):
    def __init__(self, *args, **kwargs):
        kwargs['key_format'] = 'i'
        super(withxindex, self).__init__(*args, **kwargs)
 
    def make_key_value(self, data):
        a_val = data.get("x")
        if a_val is not none:
            return a_val, none
        return none
 
    def make_key(self, key):
        return key
 
db = database('/tmp/tut2')
db.create()
 
x_ind = withxindex(db.path, 'x')
db.add_index(x_ind)
 
print db.insert({'x': 1})
 
 
 
count
 
from codernitydb.database import database
 
db = database('/tmp/tut1')
db.open()
 
print db.count(db.all, 'x')
 
 
get
 
from codernitydb.database import database
 
db = database('/tmp/tut2')
db.open()
 
print db.get('x', 1, with_doc=true)
 
 
delete
 
from codernitydb.database import database
 
db = database('/tmp/tut2')
db.open()
 
curr = db.get('x', 1, with_doc=true)
doc  = curr['doc']
 
db.delete(doc)
 
 
 
update
 
from codernitydb.database import database
 
db = database('/tmp/tut2')
db.create()
 
curr = db.get('x', 1, with_doc=true)
doc  = curr['doc']
 
doc['updated'] = true
db.update(doc)