随笔分类 -  Web

摘要:from: https://www.jianshu.com/p/4c599c4c338d 当你使用PHP(或其他编程语言)完成一个web程序的开发,并且web程序在Apache服务器上正常运行的时候,你有没有考虑过对你的Apache服务器及部署在其上的web程序进行一些压力测试呢?毕竟,真金不怕火炼 阅读全文
posted @ 2022-06-23 15:48 94cool 阅读(148) 评论(0) 推荐(0) 编辑
摘要:from:https://docs.microsoft.com/zh-cn/aspnet/core/performance/performance-best-practices?view=aspnetcore-3.1 作者:Mike Rousos 本文提供了有关 ASP.NET Core 的性能最佳 阅读全文
posted @ 2020-02-26 10:06 94cool 阅读(2706) 评论(0) 推荐(0) 编辑
摘要:from:https://segmentfault.com/a/1190000015831092 npm install --save-dev swiper@3.4.2 阅读全文
posted @ 2018-09-15 20:39 94cool 阅读(2959) 评论(5) 推荐(0) 编辑
摘要:c# webapi 跳转 public HttpResponseMessage Post() { // ... do the job // now redirect HttpResponseMessage resp = new HttpResponseMessage(HttpStatusCode.M 阅读全文
posted @ 2018-07-12 17:56 94cool 阅读(3033) 评论(0) 推荐(0) 编辑
摘要:public async Task<bool> CreateLogStore(string project, string logStore) { using (var client = new HttpClient()) { var time = DateTime.Now; string body 阅读全文
posted @ 2016-11-03 16:31 94cool 阅读(1678) 评论(0) 推荐(0) 编辑
摘要:from:http://www.cnblogs.com/mushroom/p/4659200.html 阅读目录: 介绍 为了防止网站意外暴增的流量比如活动、秒杀、攻击等,导致整个系统瘫痪,在前后端接口服务处进行流量限制是非常有必要的。本篇主要介绍下Net限流框架WebApiThrottle的使用。 阅读全文
posted @ 2016-10-17 13:56 94cool 阅读(955) 评论(0) 推荐(0) 编辑
摘要:在Package Manager Console中执行 A:新建数据库: 1、Add-Migration init[名称](为挂起的Model变化添加迁移脚本) 2、Update-Database(将挂起的迁移更新到数据库) ************************************* 阅读全文
posted @ 2016-08-17 09:39 94cool 阅读(263) 评论(0) 推荐(0) 编辑
摘要:Nuget自己打包引用的时候出现错误:Package is not compatible with netcoreapp1.0 (.NETCoreApp,Version=v1.0). Package 1.0.1 supports: net (.NETFramework,Version=v0.0) 解 阅读全文
posted @ 2016-08-05 10:32 94cool 阅读(1499) 评论(0) 推荐(0) 编辑
摘要:from:http://www.cnblogs.com/zeusro/p/5171084.html 运用.net core配合VS 2015制作nuget包 以往做nuget包我们一般要么用命令行,要么用nuget的图形化界面去做,但是一些操作比较麻烦.比如引入命名空间,引入第三方nuget包.今天 阅读全文
posted @ 2016-08-05 10:26 94cool 阅读(227) 评论(0) 推荐(0) 编辑
摘要:WebDAV 是超文本传输协议 (HTTP) 的一组扩展,为 Internet 上计算机之间的编辑和文件管理提供了标准.利用这个协议用户可以通过Web进行远程的基本文件操作,如拷贝、移动、删除等。在IIS 7.0中,WebDAV是作为独立扩展模块,需要单独进行下载,而IIS 7.5中将集成WebDA 阅读全文
posted @ 2016-08-03 09:12 94cool 阅读(404) 评论(0) 推荐(0) 编辑
摘要:win2008server R2 x64 部署.net core到IIS上出现【Failed to load the dll from [C:\Program Files\dotnet\host\fxr\1.0.1\hostfxr.dll], HRESULT: 0x80070057】错误 解决方法: 阅读全文
posted @ 2016-08-02 14:20 94cool 阅读(6394) 评论(1) 推荐(4) 编辑
摘要:from:https://blogs.msdn.microsoft.com/scott_hanselman/2014/12/21/asp-net/ [原文发表地址] How to run Background Tasks in ASP.NET [原文发表时间] 2014-08-26 几年前,Phil 阅读全文
posted @ 2016-08-01 12:10 94cool 阅读(930) 评论(1) 推荐(0) 编辑
摘要:安装 DotNetCore.1.0.0-VS2015Tools.Preview2,已经安装vs2015update3,还是提示检测到 Visual Studio 2015 Update 3没有完全安装,请修复Visual Studio 2015 Update 3 解决方法:控制台下输入命令 DotN 阅读全文
posted @ 2016-07-24 19:52 94cool 阅读(2493) 评论(6) 推荐(2) 编辑
摘要:from:http://www.1234.sh/post/pomelo-data-mysql?utm_source=tuicool&utm_medium=referral Source 源代码在GitHub中以MIT协议开源: Pomelo.Data.MySql Pomelo.EntityFrame 阅读全文
posted @ 2016-07-22 17:26 94cool 阅读(7470) 评论(2) 推荐(2) 编辑
摘要:from:https://damienbod.com/2015/12/13/asp-net-5-mvc-6-api-documentation-using-swagger/ 代码生成工具: https://github.com/NSwag/NSwag This article shows how t 阅读全文
posted @ 2016-07-22 13:42 94cool 阅读(1153) 评论(0) 推荐(0) 编辑
摘要:from:http://www.cnblogs.com/stickman/p/3454719.html 经过多次的实验,终于完美生成一个.VSIX的项目模板安装包,其中遇到不少问题与挫折,久经google/baidu/自行摸索.终于解决所有问题. 现将心得记录总结如下 关于.vstemplate 1 阅读全文
posted @ 2016-07-22 09:07 94cool 阅读(1457) 评论(0) 推荐(0) 编辑
摘要:from:http://www.cnblogs.com/wuhuacong/p/4759564.html 在上篇《基于Metronic的Bootstrap开发框架经验总结(1)-框架总览及菜单模块的处理》介绍了Bootstrap开发框架的一些基础性概括,包括总体界面效果,以及布局、菜单等内容,本篇继 阅读全文
posted @ 2016-07-21 10:06 94cool 阅读(826) 评论(0) 推荐(0) 编辑
摘要:from:http://www.cnblogs.com/wuhuacong/p/4620300.html 在上篇随笔《Web API应用架构设计分析(1)》,我对Web API的各种应用架构进行了概括性的分析和设计,Web API 是一种应用接口框架,它能够构建HTTP服务以支撑更广泛的客户端(包括 阅读全文
posted @ 2016-07-21 09:58 94cool 阅读(247) 评论(0) 推荐(0) 编辑
摘要:from:http://www.cnblogs.com/wuhuacong/p/4614875.html Web API 是一种应用接口框架,它能够构建HTTP服务以支撑更广泛的客户端(包括浏览器,手机和平板电脑等移动设备)的框架, ASP.NET Web API 是一种用于在 .NET Frame 阅读全文
posted @ 2016-07-21 09:57 94cool 阅读(233) 评论(0) 推荐(0) 编辑
摘要:测试中发现webclient 比浏览器加载页面慢的一个问题;原因WebClient 支持 gzip, deflate,但是未设置 解决方案: class WebClientEx : WebClient { int timeout = 60; public WebClientEx(int timeou 阅读全文
posted @ 2016-07-08 11:42 94cool 阅读(890) 评论(0) 推荐(0) 编辑

< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5
点击右上角即可分享
微信分享提示