基于Nodejs和MongoDB,读取数据库中产品的列表var http = require("http"), mongo = require("mongodb"), events = require("events"); http.createServer(function(req, res).....
分类:
数据库 时间:
2014-09-06 00:58:02
阅读次数:
330
1.MongoDB的安装步骤一:下载MongoDB下载安装包:http://fastdl.mongodb.org/linux/mongodb-linux-i686-2.0.4.tgz步骤二:设置MongoDB程序存放目录将其解压到/Apps,再重命名为mongo,路径为/Apps/mongo步骤三:...
分类:
数据库 时间:
2014-09-05 19:45:01
阅读次数:
269
进入MongoDB下载中心:http://www.mongodb.org/downloadsWe recommend using these binary distributions (官方推荐使用二进制版本!)根据自己的实际系统环境,下载所要的文件,我的是Linux 64-bit.wget htt...
分类:
数据库 时间:
2014-09-05 12:36:11
阅读次数:
282
1 #coding=utf-8 2 from pymongo import MongoClient 3 4 def get_all_ids(collection): 5 for each in collection.find(): 6 yield each['_id'] ...
分类:
数据库 时间:
2014-09-04 23:39:00
阅读次数:
576
http://www.webiyo.com/2011/02/install-mongodb-service-on-windows-7.htmlDownload MongoDBYou can download MongoDB in two different editions viz.32bit Mo...
分类:
数据库 时间:
2014-09-04 20:50:40
阅读次数:
333
数据导出 mongoexport假设库里有一张user 表,里面有2 条记录,我们要将它导出> use my_mongodbswitched to db my_mongodb> db.user.find();{ "_id" : ObjectId("4f81a4a1779282ca68fd8a5a")...
分类:
数据库 时间:
2014-09-04 16:38:29
阅读次数:
272
基于node.js+Express.js+Jade+MongoDB开发Web即时聊天系统本课程要求学员了解JavaScript,本课程适合希望更深入的学习Node.js,从事Web前端方向开发的大学生朋友,或者希望借助Node.js更优的性能与后台结合生产出更有价值的网站的在职程序员咨询QQ:2199289905课程目录第一部分..
分类:
数据库 时间:
2014-09-04 11:59:29
阅读次数:
247
一.MongoDB 服务端安装,命令行语句1.去官网下载最新mongodb安装包,解压--剪贴移动--重命名cd /tmp curl -O http://fastdl.mongodb.org/linux/mongodb-linux-x86_64-2.6.4.tgztar zxf mongodb-li...
分类:
数据库 时间:
2014-09-04 01:29:37
阅读次数:
222
mongodb 模糊查询以及$type使用 2012-09-11 14:13:30| 分类: mongodb | 标签: |举报 |字号大中小 订阅 最近有一监控业务,由于数据采集到非数字内容,导致监控图表无法正常显示,所以要找出这部分数据,进行删除,然后开发员从源头更正插入数据库的数据,不再产生....
分类:
数据库 时间:
2014-09-03 23:58:47
阅读次数:
482
1、http://cn2.php.net/manual/en/class.mongogridfs.phpclass FileController extends SyController{ /**@author yj * @description 要使用下面两个函数,必须先初始化 ...
分类:
数据库 时间:
2014-09-03 21:01:07
阅读次数:
189