Asp.Net MVC based on Fleck's development of multi person web chat room

1, Core description of the project 1. Fleck is a relatively simple third-party component to implement websocket, which does not need to install additional containers. There are also several interfaces available. 2. The project is based on. net framework 4.7.2, developed on vs2019, and has not tried to run on the lower version. However, the new ...

Added by will_1990 on Sun, 31 May 2020 14:21:09 +0300

[Asp.netCore Series] 1 takes you throughAsp.netCore

0. Preface This is a new series namedASP.NETCore gets started in real life.This series of presentationsASP.NETCore MVC, which assists with some front-end basics (can be used to achieve what we need, not the main topic).This series will also be introduced laterASP.NETCore platform for other types of projects, and lead you to develop a website or ...

Added by jwaqa1 on Fri, 29 May 2020 19:47:00 +0300

[Net] CEF browse IISExpress to run Web project

preface This paper introduces the use of IISExpress as Host in Winform desktop application to start the Web project of. Net platform. The open source component of CEF is used for browsing Web pages. get ready First create the Winform project WinFormIISExpressHost. Then put the IISExpress folder under Bin\Debug of the project. Looking for IISExp ...

Added by buddok on Mon, 18 May 2020 06:05:53 +0300

WebApi uses custom routing and BaseController

Create a new BaseController, inherited from ApiController public abstract class BaseController<TModel> : ApiController where TModel : class { [HttpPost] [Route("")] public abstract TModel Insert([FromBody] TModel model); [HttpPut] [Route("")] public abstract ...

Added by double on Mon, 30 Mar 2020 18:15:02 +0300

ab stress test under linux

ab introduction ab is the abbreviation of Apache bench command ab is apache's own stress testing tool. ab is very practical. It can not only test the web site access stress of apache servers, but also stress test other types of servers. For example, nginx, tomcat, haproxy, etc Principle of ab Principle of ab: the ab command will cr ...

Added by josephman1988 on Sun, 10 Nov 2019 23:48:05 +0200

Nginx installation and depth optimization

Blog Outline: I. optimization before compilation and installation II. Nginx configuration item optimization 1. Adjust the number of Nginx running processes 2. CPU affinity of Nginx 3. Nginx event processing model 4. Enable efficient transmission mode 5. Connection timeout 6. fastcgi optimization 7. gzip tuning 8. Tuning of expires cache 9. ...

Added by choubix on Fri, 25 Oct 2019 15:17:40 +0300

Optimize. Net MVC to access pages slowly

Make a good ASP.NET MVC website, access speed is very slow, it takes several seconds to tens of seconds to display the page. Every dozens of minutes will occur such a situation. Below to share the optimization method.   The development environment is: VS2015 + IIS8+ SQL Server Deployment environment: Windows 2008 R2+ IIS7+ SQL Server   Set IIS ...

Added by Yesideez on Thu, 13 Jun 2019 21:18:44 +0300

Linux Audio Driver 5: UDA1341 Chip Operating Interface

This paper is a learning note based on Linux version number of mini2440 development board linux-2.6.32.2 I. Hardware information of uda1341 The CPU controls uda1341 chips through L3 interface, which are: L3DATA: Data Line L3MODE: Mode control line, 0, address mode; 1, data mode L3CLOCK: Clock Line Address mode: data[7:2]: Rep ...

Added by bloo on Sun, 12 May 2019 10:19:52 +0300