Java’s logic to stop threads (coordination, notification) In a Java program, if we want to stop a thread, we can stop it through the interrupt […]
Month: July 2023
How does the Qwik.js framework pursue extreme performance
1. Prerequisite knowledge: ssr (you can understand Qwik only if you understand here) From the beginning of learning front-end development, we continue to learn various […]
JavaScript function currying
JavaScript function currying 1. Definition: Currying is a technique that transforms a function that accepts multiple parameters into a function that accepts a single parameter […]
What is a MySQL insert intent lock?
Insert Intention Lock, we also call it Insert Intention Lock in Chinese. This can be regarded as a supplement to the Gap Lock we talked […]
How to optimize moment.js with webpack
(1) Cleaning moment locale file By default, when you write var moment = require(‘moment’) code and pack it with webpack , the size of the bundled file becomes heavy because webpack bundles all Moment.js all locale […]
Immutable data tool library immutability-helper
In the process of learning functional programming languages, there are three important features: Although JavaScript has the characteristics of a functional language, unfortunately, it still […]
Let’s talk about a small detail of Spring Boot that everyone knows!
Friends know that when we create a Spring Boot project, there will be a parent by default. This parent helps us determine various common contents […]
See the difference in design concepts between React and Vue from useEffect
We know that after Reactits release Hooks, it brought a wave of Hooksenthusiasm in the industry. Many frameworks (such as Vue Composition API, Solid.js) have borrowed Hookspatterns from . However, even […]