- about:memory
- about:stats
- about:network
- about:internets
- about:histograms
- about:dns
- about:cache
- about:crash
- about:plugins
- about:version
ubuntu-9.10上安装facebook xhp
acme网站上几个http小工具
mongodb tutorial and references
Introduction
MongoDB is a collection-oriented, schema-free document database.
By collection-oriented, we mean that data is grouped into sets that are called 'collections'. Each collection has a unique name in the database, and can contain an unlimited number of documents. Collections are analogous to tables in a RDBMS, except that they don't have any defined schema.
By schema-free, we mean that the database doesn't need to know anything about the structure of the documents that you store in a collection. In fact, you can store documents with different structure in the same collection if you so choose.
By document, we mean that we store data that is a structured collection of key-value pairs, where keys are strings, and values are any of a rich set of data types, including arrays and documents. We call this data format "BSON" for "Binary Serialized dOcument Notation."
MongoDB is a server process that runs on Linux, Windows and OS X. It can be run both as a 32 or 64-bit application. We recommend running in 64-bit mode, since Mongo is limited to a total data size of about 2GB for all databases in 32-bit mode.
The MongoDB process listens on port 27017 by default (note that this can be set at start time - please see Command Line Parameters for more information).
MongoDB stores its data in files (default location is /data/db/), and uses memory mapped files for data management for efficiency.
Example data of mongodb
install xen-4.0 from source
以下指令使用root用户执行。