StratoVirt’s vCPU topology (SMP)

The CPU topology is used to represent the combination of the CPU at the hardware level. This article mainly explains the SMP (Symmetric Multi-Processor, Symmetric Multi-Processor System) architecture in the CPU topology. The CPU topology also includes other information, such as: cache, etc. These parts will be supplemented later. In addition to describing the composition […]

SSMP integration case (10) Adjust project environment on vue side Send request Basic interface writing

Ok, we have written the entire backend service before Then we will continue to come back and write our front-end projects. In the previous article SSMP integration case (1) Building the Spring Boot Vue MySql project environment, we have built the front-end project environment Let’s open it and type in the terminal npm i [email protected] […]

02_04 Real-time scheduling class and real-time operating system architecture of SMP multi-core processor

The previous article talked about the scheduling of ordinary processes, but at the same time there are real-time processes running on linux Let’s take a look at how real-time processes are scheduled in linux. At the same time, the linux operating system handles real-time tasks and design ideas Real-time scheduling class Linux processes are divided […]

StratoVirt’s vCPU topology (SMP)

The CPU topology is used to represent the combination of CPUs at the hardware level. This article mainly explains the SMP (Symmetric Multi-Processor) architecture in the CPU topology. The CPU topology also includes other information, such as: cache, etc. These parts will Supplement later. In addition to describing the composition relationship of the CPU, the […]

StratoVirt’s vCPU topology (SMP)

The CPU topology is used to represent the combination of CPUs at the hardware level. This article mainly explains the SMP (Symmetric Multi-Processor) architecture in the CPU topology. The CPU topology also includes other information, such as: cache, etc. These parts will Supplement later. In addition to describing the composition relationship of the CPU, the […]

StratoVirt’s vCPU topology (SMP)

The CPU topology is used to represent the combination of CPUs at the hardware level. This article mainly explains the SMP (Symmetric Multi-Processor) architecture in the CPU topology. The CPU topology also includes other information, such as: cache, etc. These parts will Supplement later. In addition to describing the composition relationship of the CPU, the […]

StratoVirt’s vCPU topology (SMP)

The CPU topology is used to represent the combination of CPUs at the hardware level. This article mainly explains the SMP (Symmetric Multi-Processor) architecture in the CPU topology. The CPU topology also includes other information, such as: cache, etc. These parts will Supplement later. In addition to describing the composition relationship of the CPU, the […]

SpringBoot integrates SSMP really super wow

1. Import starting dependencies (Web, Mybatis, Mybatis-Plus, druid, lombok) Among them, druid can not be imported (use the hikari data source that comes with boot) <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter</artifactId> <version>2.3.0</version> </dependency> <dependency> <groupId>com.mysql</groupId> <artifactId>mysql-connector-j</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.alibaba</groupId> <artifactId>druid</artifactId> <version>1.1.10</version> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.16.10</version> </dependency> […]

Integration case of SSMP based on SpringBoot

Integration case of SSMP based on SpringBoot a brief introdction module creation Create entity classes Import the configuration files of Mybatis-plus and druid Use junit to test the query method MP page query query by condition Business Layer Service Development Rapid development of business layer Service presentation layer development Presentation layer implements pagination query Processing […]