子敬正在创造自己的人生
需求有轻重缓急,功能有可控不可控。 需求有版本有截止(否则会无休无止),功能不可控变为可控。 集中兵力消灭敌人有生力量,集中优势兵力消灭敌人有生力量。
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 22 下一页
摘要: http://stackoverflow.com/questions/15934102/mongodbs-mongosniff-for-windows 阅读全文
posted @ 2014-03-14 09:48 silentjesse 阅读(204) 评论(0) 推荐(0) 编辑
摘要: http://www.2cto.com/database/201304/205007.html 阅读全文
posted @ 2014-03-13 13:57 silentjesse 阅读(340) 评论(0) 推荐(0) 编辑
摘要: http://www.2cto.com/database/201304/205024.htmlmongoDB数组操作器$push会向数组末尾加入一个元素,如果数组不存在,则会创建这个数组。增加评论comments:db.blog.posts.update({"title":"a blog post"},{$push:{"comments":{"name":"joe","email":"joe@example.com"}}})最终的结果是:{"_i 阅读全文
posted @ 2014-03-13 13:49 silentjesse 阅读(3263) 评论(0) 推荐(0) 编辑
摘要: http://my.oschina.net/132722/blog/168274 阅读全文
posted @ 2014-03-13 13:41 silentjesse 阅读(11401) 评论(0) 推荐(0) 编辑
摘要: mongodb查询内嵌文档假设有这样一个文档:db.XXX.remove();db.XXX.insert({"id":1, "members":[{"name":"BuleRiver1", "age":27, "gender":"M"}, {"name":"BuleRiver2", "age":23, "gender":"F"}, {"name&q 阅读全文
posted @ 2014-03-13 13:37 silentjesse 阅读(20164) 评论(0) 推荐(0) 编辑
摘要: Try this:$ git add -uThis tells git to automatically stage tracked files -- including deleting the previously tracked files.If you are using git 2.0, you should now use:$ git add -u :/Warning, starting git 2.0 (mid 2013), this will stage files on the whole working tree. If you want to stage file onl 阅读全文
posted @ 2014-03-11 21:08 silentjesse 阅读(1131) 评论(0) 推荐(0) 编辑
摘要: 什么是集群(Cluster)技术Cluster集群技术可如下定义:一组相互独立的服务器在网络中表现为单一的系统,并以单一系统的模式加以管理。此单一系统为客户工作站提供高可*性的服务。大多数模式下,集群中所有的计算机拥有一个共同的名称,集群内任一系统上运行的服务可被所有的网络客户所使用。Cluster必须可以协调管理各分离的组件的错误和失败,并可透明地向Cluster中加入组件。一个Cluster包含多台(至少二台)拥有共享数据存储空间的服务器。任何一台服务器运行一个应用时,应用数据被存储在共享的数据空间内。每台服务器的操作系统和应用 程序文件存储在其各自的本地储存空间上。Cluster内各节点 阅读全文
posted @ 2014-03-11 13:13 silentjesse 阅读(494) 评论(0) 推荐(0) 编辑
摘要: the conception of schema is different in different db software.here i just refer to oracle schema。following is quote from "http://docs.oracle.com/cd/B19306_01/server.102/b14200/sql_elements007.htm"schema conception:Schema ObjectsAschemais a collection of logical structures of data, or sche 阅读全文
posted @ 2014-02-28 11:05 silentjesse 阅读(371) 评论(0) 推荐(0) 编辑
摘要: git remote add local_proj /opt/git/project.git 给项目添加新远程服务器地址git clone/opt/git/project.git local_proj一个本地项目与git相结合有两种情况:1、先有本地项目,然后再将项目push到git服务器上这种情况下,如果你要将项目push到git服务器上,那要怎么办?办法是:给项目添加远程服务器地址,这时就可以使用命令git remote add abbrname https://opt/git/project.git 这命令的意思是添加一个远程git服务器A,A的url为https://opt/git/p 阅读全文
posted @ 2014-02-25 14:47 silentjesse 阅读(2835) 评论(0) 推荐(0) 编辑
摘要: 2014年2月20日到叫(黑土)(人士)的公司去面试,一家新成立的公司。刚去公司是他们新聘请的猎头A来面试我的,A面试完之后是一个号称X总的年轻人来面试我,初一见此人有点邋遢,穿着西装。X:"你以前有做过地图?"(我简历上有写)我:"是的,在地图上做过增值"X:"你以前也做过socket,那你socket怎么样?"我:"还行"X:"如果100w的数据怎么发送?"当时我被他这么一问,问闷了。我也没多想就回答:"100w的话做长连接吧"X:"长连接很耗电?"我 阅读全文
posted @ 2014-02-23 22:19 silentjesse 阅读(4330) 评论(2) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 22 下一页