NoSQL的2个专题
摘要:http://blog.nosqlfan.com/html/3548.htmlhttp://blog.nosqlfan.com/html/3537.html
阅读全文
关于MongoDB的主键Id
摘要:MongoDB默认用的是自己的ObjectId,详细信息参见http://www.mongodb.org/display/DOCS/Object+IDs。可以自定义,详见http://www.mongodb.org/display/DOCS/CSharp+Driver+Serialization+Tutorial#CSharpDriverSerializationTutorial-WriteacustomIdgenerator。从官方的文档,可以看到他们还是倾向于用ObjectId。虽然可以用Guid,但是Guid会消耗更多的空间,性能可能也会受到一些影响。同时,如果使用Guid,请注意下一段
阅读全文
Git资料
摘要:http://www.cnblogs.com/dudu/archive/2011/06/24/git_on_windows.htmlhttp://www.cnblogs.com/henllyee/archive/2012/02/02/git_firt.htmlhttp://www.cnblogs.com/baizx/archive/2010/08/09/1796122.htmlhttp://www.cnblogs.com/wojilu/archive/2011/11/16/using-git-with-visual-studio.html
阅读全文
关于SQLite
摘要:1. 官网:http://www.sqlite.org/2. 初步看了一下,就是SQLite轻量级级,可用于10w日点击量级别的网站,但太高并发就不行了,另外只能用于单机。 适用场合详见:http://www.sqlite.org/whentouse.html3. 速用教程:http://www.cnblogs.com/achun8011/archive/2011/03/03/1970246.html
阅读全文
MongoDB In Action
摘要:1. 园内精品:http://www.cnblogs.com/fish-li/archive/2011/06/26/2090800.htmlhttp://www.cnblogs.com/lipan/archive/2011/03/08/1966463.html
阅读全文
Using Fiddler with IIS
摘要:We’ve been using Fiddler to debug the requests and responses sent via web services to a service layer our application interacts with and it works pretty well when you run the application using Cassini but by default won’t work when you run the website through IIS. The key to this as one of my co...
阅读全文
Solr开发文档
摘要:Solr 是一种可供企业使用的、基于 Lucene 的搜索服务器,它支持层面搜索、命中醒目显示和多种输出格式。在这篇文章中,将介绍 Solr 并展示如何轻松地将其表现优异的全文本搜索功能加入到 Web 应用程序中。开发环境:System:WindowsWebBrowser:IE6+、Firefox3+JDK:1.6+JavaEE Server:tomcat5.0.2.8、tomcat6IDE:eclipse、MyEclipse 8开发依赖库:JavaEE 5、solr 3.4个人博客:http://hoojo.cnblogs.comhttp://blog.csdn.net/IBM_hoojoe
阅读全文