Nginx Managed.Net Core Application

I. Installation.Net Core Refer to official documents: https://www.microsoft.com/net/core#linuxcentos 1. Add dotnet product Feed Before installing.NET Core, you need to register for Microsoft Product Feed. This only needs to be done once. First, register the Microsoft signature key, then add the Microsoft product Feed sudo rpm --import https ...

Posted by Rusnoff on Wed, 24 Nov 2021 09:20:14 -0800

Use of object pool in. NET Core

1, What is an object pool Object pool is simply a software design idea that provides reusable ability for objects. We often say that it is not difficult to borrow and return, and the object pool ensures that objects can be reused through borrowing and returning, so as to save the performance overhead of frequent object creation. The most commo ...

Posted by ChaosDream on Thu, 18 Nov 2021 07:50:30 -0800

. netCore3.0 + WebApi + Vue2.0 project construction - use of and Swagger

1, What is Swagger Swagger is a normative and complete framework for generating, describing, invoking, and visualizing RESTful Web services. The overall goal is to make the client and file system update at the same speed as the server. The file's methods, parameters and models are tightly integrated into the server-side code, allowing the API ...

Posted by robgudgeon on Sat, 06 Nov 2021 09:34:48 -0700

Teach you to learn Dapr - 3. Use Dapr to run the first. Net program

be careful: The command line tool mentioned in this article is one of Windows Terminal/PowerShell/cmd. It is recommended to use Windows Terminal It is recommended to run the command line tool as an administrator to avoid stepping on the pit To ensure smooth operation, it is recommended to use PowerShell to execute set executionpolicy remo ...

Posted by idris on Tue, 02 Nov 2021 18:48:13 -0700

ASP.NET Core configuration cross domain (CORS)

Because real-time messages are needed in the project, ASP.NET(Core) SignalR real-time communication library is used. Because business services and communication services are independent, cross domain issues are involved. The exceptions thrown by the browser are very obvious. This is obviously cross domain related content. The error information ...

Posted by cullouch on Mon, 01 Nov 2021 08:43:12 -0700

. Net Core modifies the default boot port

     Today, I accidentally found a change because I haven't seen the. net core project for a long time. I found that the default port for project startup is not 5000. I remember clearly that when it was version 1. X of. net core, the default port number for each startup was 5000, but not now. Take this opportunity t ...

Posted by comicrage on Thu, 28 Oct 2021 05:03:18 -0700