码迷,mamicode.com
首页 >  
搜索关键字:ansible runner mongodb    ( 13501个结果
nodejs + jquery Mobile构建一个简单的移动web (客户端)
前面展示了使用nodejs技术和jqm来搭建一个简单的支持CRUD操作应用的服务端部分(参见:nodejs + jquery Mobile构建一个简单的移动web(服务端)),服务端采用nodejs技术实现,使用了mongodb数据库和轻量级web开发框架expressJS, 路由使用restful...
分类:移动开发   时间:2014-05-26 13:07:21    阅读次数:356
MongoDB 聚合之 MapReduce
理解 MapReduce。
分类:数据库   时间:2014-05-26 12:23:25    阅读次数:296
MongoDB常用功能
一、查询var doc = new Document();1、模糊查询var reg = new MongoRegex(".*" + qry.名称 + ".*", MongoRegexOption.IgnoreCase);doc["Name"] = reg;2、IN查询var docIn = new...
分类:数据库   时间:2014-05-24 07:51:28    阅读次数:295
C# Community Projects
Community Supported C# Drivers See the officially supported MongoDB C# driver mongodb-csharp driver simple-mongodb driver NoRM Tools MongoDB.Emitter D...
分类:其他好文   时间:2014-05-21 20:30:58    阅读次数:289
MongoDB C# / .NET Driver
MongoDB C# Driver是官方提供的.NET C#驱动。 Getting Started with the C# Driver C# Driver Tutorial C# Driver LINQ Tutorial Serialize Documents with the C# Driver...
分类:数据库   时间:2014-05-21 20:28:24    阅读次数:446
Getting Started with the C# Driver
1.下载 如果下载的.zip文件,只需要解压即可。 如果安装的.msi文件,它会将C#驱动DLL放在C:\Program Files (x86)\MongoDB\CSharp Driver xxx的位置。 2.将C#驱动DLL添加引用 MongoDB.Bson.dll MongoDB.Driver....
分类:其他好文   时间:2014-05-21 19:38:39    阅读次数:379
C# Driver LINQ Tutorial
1.介绍 该教程涵盖了1.8版本的C#驱动中的LINQ查询。你可能已经阅读最新的C# Driver Tutorial。 2.快速开始 首先,给程序添加下面的using声明 using MongoDB.Driver.Linq;然后,像往常一样,获取一个collection的引用变量:var colle...
分类:其他好文   时间:2014-05-21 19:14:39    阅读次数:385
mongodb迁移
A机器上有mongodb服务,A机器要废,于是迁至B。 简单起见,依然是在A上ps auxwww|grep mongo找到正在运行的进程: /home/admin/mongodb/mongodb-linux-x86_64-2.2.0/bin/mongod -f /home/admin/mongodb/mongodb.conf 于是把/home/admin/mongodb/ 拷到B下。 在b...
分类:数据库   时间:2014-05-21 15:24:05    阅读次数:540
利用ansible modules模块来自定义集群管理
前沿:在一些个特定环境下,用ansible做集群管理还是很棒的,这两天看了他的模块,官方提供了很多,就算不够,你也可以自定义定制。话说我挺喜欢他的modules模块的,够直接!!!我这里就说些常见的ansible的modules吧。下面的ansibleservice一看大家就懂了,就是服务状态的管..
分类:其他好文   时间:2014-05-21 13:07:44    阅读次数:837
【Cracking the Code Interview(5th edition)】二、链表(C++)
链表结点类型定义:1 class Node {2 public:3 int data = 0;4 Node *next = nullptr;5 6 Node(int d) {7 data = d;8 }9 };快行指针(runner)技巧:同时...
分类:编程语言   时间:2014-05-21 04:26:19    阅读次数:444
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!