【轉】LokiJS:純JavaScript實現的輕量級資料庫

來源:互聯網
上載者:User

標籤:style   http   io   ar   java   for   sp   strong   檔案   

原文轉自:http://www.html5cn.org/article-7091-1.html

 LokiJS一個輕量級的面向文檔的資料庫,由JavaScript實現,效能高於一切。目的是把JavaScript對象作為文檔,然後再進行儲存,並且以同樣的方式來檢索資料。 LokiJS可以運行於Node.js和所有支援JavaScript的瀏覽器、行動裝置 App程式上。 


       LokiJS支援欄位索引來實現更快的檔案訪問,效能也相當好(近50萬OPS/ s)。其內建的DynamicView類也能用於資料子集的索引,達到更快的效能。 LokiJS支援集合,很像MongoDB,並將資料以JSON格式儲存到硬碟上(根據會話來恢複狀態),所以你的資料是可移植的。 
        採用LokiJS的最理想情景:

  • 行動裝置 App程式——尤其是基於HTML5的(例如:Cordova,Phonegap等等)
  • 基於Node.js的小——中型應用程式的資料存放區
  • 採用Node-Webkit的傳統型應用程式
  • LokiJS目前還處在alpha階段。源碼託管在Github上。

快速安裝:

[js]

  1. npm install lokijs
  2. or:
  3. bower install lokijs
複製代碼
建立一個資料庫:

  1. var db = new loki(‘loki.json‘) 
  2. Pass the filename where to persist data
複製代碼
建立一個集合:

  1. var children = db.addCollection(‘children‘)
複製代碼
插入一個文檔:

  1. children.insert({name:‘Sleipnir‘, legs: 8})
  2. children.insert({name:‘Jormungandr‘, legs: 0})
  3. children.insert({name:‘Hel‘, legs: 2})
複製代碼
檢索/擷取文檔:

  1. children.get(1); // returns Sleipnir
  2. children.find( {‘name‘:‘Sleipnir‘} )
  3. children.find( { legs: { ‘$gt‘ : 2 } } )
複製代碼
建立一個動態視圖:

  1. var legs = children.addDynamicView(‘legs‘);
  2. legs.applyFind( { legs: { ‘$gt‘ : 2 } )
  3. legs.applySimpleSort(‘legs‘);
  4. legs.data();
複製代碼
MapReduce:

  1. children.mapReduce( 
  2.   function( obj ){ return obj.legs; } , 
  3.   function( array ) { 
  4.     var sum = 0;
  5.     for (var i=0; i < array.length; i++ ){ 
  6.       sum += array[i];
  7.     }
  8.     return ( sum / array.length ).toFixed(2);
  9. });
複製代碼
LokiJS相關資料:

官網:http://lokijs.org/

託管地址:https://github.com/techfort/LokiJS

來源地址:http://www.csdn.net/article/2014-11-05/2822493-LokiJS?reload=1

【轉】LokiJS:純JavaScript實現的輕量級資料庫

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.