上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 39 下一页
摘要: volatile int Age = 10; public int GetAge() { return Age; }如上例子,调用GetAge()得到的是“主”内存区域的Age数值。用volatile修饰后的变量不允许有不同于“主”内存区域的变量拷贝。换句话说,一个变量... 阅读全文
posted @ 2015-12-24 15:26 b̶i̶n̶g̶.̶ 阅读(199) 评论(0) 推荐(0) 编辑
摘要: 一、常见启动错误1."No mapping for the Unicode character exists in the target multi-byte code page"解决方案:Nginx所在的目录不能有中文二、常用命令 1.start nginx --启动 2.nginx -s sto... 阅读全文
posted @ 2015-12-14 11:52 b̶i̶n̶g̶.̶ 阅读(468) 评论(0) 推荐(0) 编辑
摘要: ASP.NET MVC5 Filter重定向问题一、问题描述 1.在Filter中使用直接filterContext.RequestContext.HttpContext.Response.Redirect(url) 会产生 "无法在发送HTTP标头之后进行重定向"。二、解决方案 1. 使用MVC自... 阅读全文
posted @ 2015-12-10 11:38 b̶i̶n̶g̶.̶ 阅读(1075) 评论(0) 推荐(0) 编辑
摘要: 一、资源1.http://referencesource.microsoft.com/二、备注1.可在线预览.Net Framework 4.6.1源码实现 阅读全文
posted @ 2015-12-10 09:29 b̶i̶n̶g̶.̶ 阅读(558) 评论(0) 推荐(0) 编辑
摘要: 一、资源1.http://dotnet.github.io/2.http://www.codeproject.com/Articles/1005145/DNVM-DNX-and-DNU-Understanding-the-ASP-NET-Runtime3.https://github.com/dot... 阅读全文
posted @ 2015-12-10 09:28 b̶i̶n̶g̶.̶ 阅读(259) 评论(0) 推荐(1) 编辑
摘要: 一、资源1.Redis中文网站: http://www.redis.cn/2.RedisDesktop http://redisdesktop.com/download 阅读全文
posted @ 2015-12-10 09:12 b̶i̶n̶g̶.̶ 阅读(179) 评论(0) 推荐(0) 编辑
摘要: 一、资源1、C# 驱动下载地址 https://github.com/mongodb/mongo-csharp-driver/releases2. Mongodb 管理工具 mongochef 下载地址 http://3t.io/mongochef/download/platform/#toggle... 阅读全文
posted @ 2015-12-10 09:10 b̶i̶n̶g̶.̶ 阅读(263) 评论(0) 推荐(0) 编辑
摘要: 一、环境 Redis Windows 版本:2.8.2104 二、植入Windows服务 > redis-server.exe --service-install redis.windows-service.conf 图1 三、查看 win+R 输入 :services.msc 图2 右键启动服务即 阅读全文
posted @ 2015-12-07 15:08 b̶i̶n̶g̶.̶ 阅读(327) 评论(0) 推荐(0) 编辑
摘要: 一、环境配置经验1.一般安装的副本集的时候,主实例可以有数据库和用户;从实例不能、仲裁机不能有任何数据库包括用户2.搭建副本集的时候Host使用外网IP,否则使用Mongodb VUE 1.6.9连接副本集异常3. 如果需要登录从实例查看数据库信息,则需要执行db.getMongo().setSla... 阅读全文
posted @ 2015-12-07 14:53 b̶i̶n̶g̶.̶ 阅读(366) 评论(0) 推荐(0) 编辑
摘要: 一、副本集配置 搭建完毕,1台主实例、1台从实例、1台仲裁实例。mongodb建议副本集中的机器数量为奇数,即至少需要3台实例 二、副本集连接字符串 1.读 mongodb://secondary.com/?SlaveOk=true 2.写 mongodb://primary.com 三、路由集群连 阅读全文
posted @ 2015-12-07 14:24 b̶i̶n̶g̶.̶ 阅读(1548) 评论(0) 推荐(0) 编辑
上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 39 下一页