Production tuning 1 HDFS core parameters
catalogue1 HFDS core parameters1.1 NameNode memory production configurationProblem descriptionConfiguration in hadoop-env.sh1.2 NameNode heartbeat concurrency configurationModify hdfs-site.xml configuration1.3 enable recycle bin configurationRecycle bin mechanismDescription of function parameters for opening recycle binStart Recycle Bin - modif ...
Posted by romic on Thu, 04 Nov 2021 15:44:50 -0700
Java -- detailed explanation of time complexity and space complexity
Algorithm efficiency
In use, the algorithm efficiency is divided into two types: one is time efficiency (time complexity) and the other is space efficiency (space complexity). Time complexity refers to the speed at which the program runs. Spatial complexity refers to the additional space required by an algorithm.
Time complexity
What is ...
Posted by ol4pr0 on Thu, 04 Nov 2021 15:35:04 -0700
2021 CNSS WEB part WP
Web
Signin
At the beginning, Please Change Your Method!, The source code can be obtained by modifying the packet capture method to the POST method
<?php
error_reporting(0);
require_once("flag.php");
if($_SERVER['REQUEST_METHOD'] !=='POST'){
die("Please Change Your Method!");
exit();
}else{
if(!isset($_POST["CNSS"])){
s ...
Posted by hstraf on Thu, 04 Nov 2021 15:14:43 -0700
Detailed explanation of RedisTemplate method
maven dependency
<!--redis-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
<!--<version>2.1.4.RELEASE</version>-->
</dependency>
<dependency>
...
Posted by ITEagle03 on Thu, 04 Nov 2021 14:41:41 -0700
Talk about the Callback of collaborative process and write the model of collaborative process
The emergence of Coroutines has subverted the programming style of Java for many years. If you are the author of a third-party library, you may want to use Coroutines and Flow to make your Java callback based library more Kotlin and collaborative. On the other hand, if you are an API consumer, you may prefer to access the Coroutines style API t ...
Posted by jeff_papciak on Thu, 04 Nov 2021 14:41:06 -0700
Getting started with POI and easyExcel
Use scenarios and versions
Use scenarios
Export information to excelEnter information from excel table into website database (exercise upload.)
excel version
Version 03 xls rows Max 65535 rowsVersion 07 xlsx has no limit on the number of rows
One serious problem with POI is that it consumes a lot of memory
EasyExcel is an open source exce ...
Posted by kwilder on Thu, 04 Nov 2021 14:29:56 -0700
css usage css syntax
css
css: page beautification and layout control
Concept: Cascading Style Sheets
Cascade: multiple styles can act on the same html element and take effect at the same time
Benefits: Powerful: Separating content presentation from style control Reduce coupling and decoupling Make division of labor and cooperation easier Improve developmen ...
Posted by WinnieThePujols on Thu, 04 Nov 2021 14:15:07 -0700
Meituan interviewer asked: write the best single case model you think? So I wrote seven
Interview question: write a single case model that you think is the best
Interview investigation point
Purpose of investigation: single case mode can investigate a lot of basic knowledge, so many interviewers will ask this question. Small partners should note that during the interview process, any topic that can examine the ability of ...
Posted by Cereals on Thu, 04 Nov 2021 14:06:04 -0700
Go language slice advanced
Introduction:
There is such a problem when learning the slicing type of go language.
First, in go, the slice type variable actually stores an address, which is the address of the first element of the underlying array it references, or the address of the array.
(I)
Code 1:
package main
import "fmt"
func change(a []int) { //Here is the add ...
Posted by novice4eva on Thu, 04 Nov 2021 14:04:46 -0700
Vue - 12 Vue cli 3. X scaffold construction project
Vue family bucket -- 12 Vue cli 3. X scaffold construction project
12.1 what is Vue cli
1. Vue cli is a tool officially provided by Vue to build a project scaffold. It is a standard tool developed by Vue.js. It has integrated webpack and built many common configurations, making it more standardized when using Vue to develop projects.2. ...
Posted by banks1850 on Thu, 04 Nov 2021 14:03:28 -0700