發表文章

目前顯示的是 5月, 2016的文章

[ Mongodb ] mongodb基本操作 20160530

// 取得collection建立的索引 db.collection.getIndexes(); // 建立複合式索引,所為不可重複的 (a: ascending,b: ascending) db.collection.createIndex( { a:1 , b:1 }, { unique: true }); 若把{ a:1, b:1 } 改成 { a:-1,b:-1 } 則表示是用descending的方式 sort({ _id: -1 }) =====> sort by created time descending Mongodb是設計給分散式系統用的

[ Ubuntu ] change crontab editor to vim

http://superuser.com/questions/281617/change-default-text-editor-for-crontab-to-vim The  crontab -e  command will check the environment variables  $EDITOR  and  $VISUAL  for an override of the default text editor, so... export VISUAL = vim or export EDITOR = vim should do the trick.