摘要:
Install MongoDB on Debian¶This tutorial outlines the steps to installMongoDBon Debian systems. The tutorial uses.debpackages to install. While some De... 阅读全文
摘要:
Mongois a document-oriented database.Install the required gems:gem install mongogem install bson_ext第一步,连接到mongo,可以在configure block完成。require 'sinatra'require 'mongo'require 'json/ext'include Mongoconfigure do conn=MongoClient.new('localhost',27017) set :mongo_connect 阅读全文