一

{"type":"编程笔记"}


  • Home

  • Archives
  • Search

google chrome about commands list

Posted on 2010-07-20   |   In web
  1. about:memory
  2. about:stats
  3. about:network
  4. about:internets
  5. about:histograms
  6. about:dns
  7. about:cache
  8. about:crash
  9. about:plugins
  10. about:version

ubuntu-9.10上安装facebook xhp

Posted on 2010-07-20   |   In linux

building xhp

http://wiki.github.com/facebook/xhp/building-xhp

download xhp

http://github.com/facebook/xhp/downloads

Read more »

acme网站上几个http小工具

Posted on 2010-07-17   |   In web

http_load

同apache ab和jmeter一样可以对数据库和web服务器作压力测试。

Read more »

mongodb tutorial and references

Posted on 2010-07-06   |   In linux

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

Read more »

install xen-4.0 from source

Posted on 2010-07-02   |   In linux

以下指令使用root用户执行。

Read more »
1…474849…99
yuweijun

yuweijun

492 posts
12 categories
RSS
GitHub Twitter
© 2021 yuweijun
Powered by Hexo
Theme - NexT.Mist.KISS