rodert single row learning redis advanced [silver 1]
redis silver I
To make a digression, recently, the epidemic situation in the capital of China is very serious. We are all in the current of the times. This is not for individuals. I hope you can protect yourself and have fun every day.
[toc]
preface
Statement: refer to the Internet, and leave a message if there is any dispute. Standing on the s ...
Posted by Stanley90 on Thu, 25 Jun 2020 11:19:57 +0200
java multithreaded Callable -- segment a large list and merge the results
Code reference http://bbs.csdn.net/topics/391070227?page=1
Here is the posted Code:
public void dealListWithMutiThread(){
List<Object> list = new ArrayList<Object>(10000);
int index = 0;
ExecutorService ex = Executors.newFixedThreadPool(5);
int dealSize = 2000;
List&l ...
Posted by l9pt5 on Wed, 24 Jun 2020 07:20:34 +0200
java framework SSM learning -- Spring's transaction control
When it comes to Spring AOP, we are going to enhance transaction control by ourselves, and the Spring framework is ready for us to use these functions. Of course, don't think that SrpingAOP can only enhance the transaction function. AOP can be used to enhance any method you want to enhance. So how do ...
Posted by supernova on Sun, 21 Jun 2020 10:18:32 +0200
java SPI 03-ServiceLoader jdk Source Parsing
Series Catalog
What is spi 01-spi?Getting Started
spi 02-spi battle resolution slf4j package conflict problem
spi 03-spi jdk for source code parsing
spi 04-spi dubbo for source code resolution
spi 05-dubbo adaptive extension adaptive expansion
spi 06 - Implement SPI framework from scratch
spi 07-Automatically generate SPI profile implementatio ...
Posted by frizzo on Thu, 18 Jun 2020 20:26:14 +0200
Summary of Spring IOC knowledge points
@Configuration configure spring and start the spring container
@Configuration is used to define the configuration class, which is labeled on the class, which is equivalent to < beans > in the xml configuration file of spring. Its function is to configure the spring container (application context)
Example description:
Configuration class
@ ...
Posted by lyealain on Sun, 14 Jun 2020 07:17:49 +0200
2020.05.28 Database Connection Pool C3P0 Druid JDBCTemplate
Today's Content
1. Database Connection Pool
2. Spring JDBC : JDBC Template
Database Connection Pool
1. Concept: It is actually a container (collection) that holds database connections.
When the system is initialized, the container is created and some connection objects are requested in the container. When the user accesses the database, ...
Posted by truck7758 on Thu, 28 May 2020 18:22:01 +0200
Data Source Management | OLAP Query Engine, ClickHouse Clustered Management
Source code for this article: GitHub. Click here || GitEE. Click here
1. Introduction to Column Library
ClickHouse is the 2016 Open Source Column Storage Database (DBMS) of Yandex, Russia. It is mainly used for OLAP online analysis processing queries, and can use SQL queries to generate real-time analysis data reports.
Column storage
Row stor ...
Posted by bettydailey on Mon, 18 May 2020 02:49:32 +0200
JAVA lazy development: mybatis generator installation and use (spring tool suite)
java lazy development: mybatis generator generates the corresponding entity class, xml Mapper file, interface and help class according to the table design in the database.
Take spring-tool-suite-3.9.2.RELEASE as an example:
install
Introduction package
<dependency>
<groupId>org.mybatis.generator</groupId>
<artifa ...
Posted by benyamin on Mon, 04 May 2020 05:54:22 +0200
java learning notes
Getting to know JDBC
1, JDBC concept
jdbc English full name: java database connectivity is a set of specifications for Java to access database, which can be understood as a set of classes and interfaces provided by java to connect database
The relationship between jdbc and database driver:
2, jdbc easy to use
Usage process: (the driver jar ...
Posted by nmreddy on Fri, 01 May 2020 07:44:47 +0200
SonarQube installation configuration
thanks
Download sonarqube-6.4
Download SonarQube Scanner
mysql adds a database named sonar and the user sonarqube@sonarqube
Unzip SonarQube and modify the database configuration and user configuration of the configuration file
[root@localhost pig]# vim sonarqube-6.4/conf/sonar.properties
# Configure database user na ...
Posted by gfoot on Wed, 22 Apr 2020 17:16:17 +0200