真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

mongoshell啟動(dòng)配置文件.mongorc.js(三)-創(chuàng)新互聯(lián)

mongo shell啟動(dòng)配置文件.mongorc.js(三)

目前創(chuàng)新互聯(lián)公司已為近千家的企業(yè)提供了網(wǎng)站建設(shè)、域名、網(wǎng)站空間、網(wǎng)站托管、服務(wù)器托管、企業(yè)網(wǎng)站設(shè)計(jì)、武昌網(wǎng)站維護(hù)等服務(wù),公司將堅(jiān)持客戶導(dǎo)向、應(yīng)用為本的策略,正道將秉承"和諧、參與、激情"的文化,與客戶和合作伙伴齊心協(xié)力一起成長,共同發(fā)展。

自定義MongoDB操作函數(shù)

可以把自己寫的js代碼保存在某個(gè)地方,讓MongoDB加載它,然后就可以在MongoDB的命令行里操作它們。

mongodb shell默認(rèn)會(huì)加載~/.mongorc.js文件

例如以下修改了啟動(dòng)提示文字、左側(cè)提示文字,增加了my_show_shards shell函數(shù)用于顯示當(dāng)前sharded collection的chunks在各分片的負(fù)載情況:

//~/.mongorc.js   //show at begin     var compliment = ["attractive", "intelligent", "like batman"];     var index = Math.floor(Math.random()*3);     print("Hello, you're looking particularly " + compliment[index] + " today!"); //change the prompt     prompt = function(){         if (typeof db == "undefined") {             return "(nodb)> ";         }         // Check the last db operation         try {             db.runCommand({getLastError: 1});         }         catch (e) {             print(e);         }         return db + "> ";     } //show all shard's chunks     function my_show_shards() {         var config_db = db.getSiblingDB("config");         var collections = {};         var shards = {};         var shard_it = config_db.chunks.find().snapshot();     while (shard_it.hasNext()) {           next_item = shard_it.next();             collections[JSON.stringify(next_item["ns"]).replace(/\"/g, "")] = 1;             shards[JSON.stringify(next_item["shard"]).replace(/\"/g, "")] = 1;         }         var list_collections = [];         var list_shards = [];         for (item in collections) {             list_collections.push(item);         }         for (item in shards) {             list_shards.push(item);         }     list_collections.forEach(function(collec) {               list_shards.forEach(function(item) {                     obj = {};                     obj["shard"] = item;                     obj["ns"] = collec;                     it = config_db.chunks.find(obj);                     print(collec, item, it.count());                     })                 })     }

另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)cdcxhl.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。


本文標(biāo)題:mongoshell啟動(dòng)配置文件.mongorc.js(三)-創(chuàng)新互聯(lián)
標(biāo)題網(wǎng)址:http://weahome.cn/article/csdgpj.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部