摘要:
启动 Redis WINDOW 服务: https://github.com/ServiceStack/ServiceStack.Redis install-package ServiceStack.Redis var client = new RedisClient("127.0.0.1", 63 阅读全文
摘要:
下载Memcached.exe保存到c:\memcached运行command:输入 c:\memcached\memcached.exe -d install 回车,安装memcached server输入 c:\memcached\memcached.exe -d start回车, 这个也可以自... 阅读全文
摘要:
WebClient client = new WebClient(); MemoryStream ms = new MemoryStream(client.DownloadData("http://www.cnblogs.com/")); ... 阅读全文
摘要:
锁,是由锁管理器负责维护,其目的是保证事务的ACID,是平衡并发和数据安全的机制。锁定粒度与并发性是成反比的,默认情况下,SQL Server Compact 4.0 对数据页使用行级锁定,对索引页使用页级锁定。每次会话的锁数是有限的,当事务超出其升级阈值时,MicrosoftSQL Server ... 阅读全文
摘要:
使用 XSLT 将 XML 文档转换为其他文档定义一个CD的html模板,命名为 cd.xsl My CD Collection Title Artist 使用 cd.xs... 阅读全文
摘要:
ServiceModel 配置元素Binding 配置元素:客户端Web.config:服务端Web.config代码 ... 阅读全文
摘要:
http://nodejs.org/ 下载并安装 node.js 最新版本运行cmd,输入npm installxxxxxx 回车,安装扩展模块,如:express,socket.io等运行cmd,输入node JS文件全路径 回车…… 阅读全文
摘要:
一种前端开发框架,如同YUI下载源码找开后,其文件结构如下:bootstrap/├── css/│ ├── bootstrap.css│ ├── bootstrap.min.css│ ├── bootstrap-theme.css│ └── bootstrap-theme.min.css├── js/│ ├── bootstrap.js│ └── bootstrap.min.js└── fonts/ ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.svg ├── glyphicons-halflings 阅读全文
摘要:
1. AngularJs 是一个JS 框架,是一种基于MVC的设计模式,也是一种遵循MVVM的设计模式 2. script 需引用 <script src="angular.min.js">,Nuget安装包: AngularJs.Core 和 AngularJs.Route 3. 主要内容:Mod 阅读全文