這期內(nèi)容當(dāng)中小編將會(huì)給大家?guī)?lái)有關(guān)cpy-leveldb功能怎么才能在Python 中得到實(shí)現(xiàn),文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
成都創(chuàng)新互聯(lián)于2013年成立,是專業(yè)互聯(lián)網(wǎng)技術(shù)服務(wù)公司,擁有項(xiàng)目網(wǎng)站設(shè)計(jì)、成都做網(wǎng)站網(wǎng)站策劃,項(xiàng)目實(shí)施與項(xiàng)目整合能力。我們以讓每一個(gè)夢(mèng)想脫穎而出為使命,1280元歙縣做網(wǎng)站,已為上家服務(wù),為歙縣各地企業(yè)和個(gè)人服務(wù),聯(lián)系電話:13518219792
cpy-leveldb是在leveldb(google開源的高性能key-value數(shù)據(jù)庫(kù))的CAPI基礎(chǔ)上開發(fā)的python綁定,目前支持leveldb的Put,Get,Delete,Write操作,以及WriteBatch的原子更新操作。下面小編來(lái)講解下cpy-leveldb功能怎么才能在Python中得到實(shí)現(xiàn)?
cpy-leveldb功能怎么才能在Python中得到實(shí)現(xiàn)
>>>importleveldb
>>>db=leveldb.LevelDB("/tmp/leveldb")
>>>db.Put("1","111")
>>>db.Put("2","222")
>>>db.Put("3","333")
>>>db.Get("1")
'111'
>>>db.Get("3")
'333'
>>>db.Get("2")
'222'
>>>batch=leveldb.WriteBatch()
>>>foriinxrange(20):
...batch.Put(str(i),"helloworld%i"%i)
...
cpy-leveldb功能怎么才能在Python中得到實(shí)現(xiàn)
>>>db.Get("2")
'222'
>>>db.Get("5")
''
>>>db.Write(batch)
>>>db.Get("5")
'helloworld5'
>>>db.Get("2")
'helloworld2'
>>>iter=leveldb.Iterator(db)
Iterator_initexecuted.
>>>iter.First()
>>>iter.Key()
'0'
>>>iter.Value()
'helloworld0'
>>>iter.Last()
>>>iter.Key()
'9'
>>>iter.Value()
'helloworld9'
>>>iter.First()
>>>iter.Next()
>>>iter.Key()
'1'
>>>iter.Next()
>>>iter.Key()
'10'
>>>iter.Next()
>>>iter.Key()
'11'
>>>iter.Value()
'helloworld11'
上述就是小編為大家分享的cpy-leveldb功能怎么才能在Python 中得到實(shí)現(xiàn)了,如果剛好有類似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。
分享文章:cpy-leveldb功能怎么才能在Python中得到實(shí)現(xiàn)
URL網(wǎng)址:http://www.rwnh.cn/article38/pgsipp.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供響應(yīng)式網(wǎng)站、網(wǎng)站收錄、定制網(wǎng)站、建站公司、企業(yè)建站、服務(wù)器托管
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)