MyBatis Learning Summary (4) - MyBatis Caching and Code Generation

MyBatis Cache Caching can improve system performance, speed up access, reduce server pressure and bring better user experience. Caching uses space for time, and a good cache has a high hit rate and a small amount of data. Caching is a very important technology. 1.0. Reencapsulate SqlSession FactoryUtils In order to configure cache learning, ...

Posted by adrian28uk on Sat, 11 May 2019 16:07:26 -0700

The Magic Use of Abstract Constructor in Building Environment in ASP.NET MVC

First of all, we need to understand the problem of subclass inheritance from parent constructor calls. Creating subclass instances through subclass parametric constructors defaults to calling parent parametric constructorsCreate subclass instances through subclass parametric constructors, and also call parent parametric constru ...

Posted by marsooka on Sat, 11 May 2019 10:05:27 -0700

JSP Second Week Summary

This week, we learned the basic usage of servlets. Until this week, we had been writing Java code on the page. The servlet is to move these Java code into the Java file. When creating servlet s, we check doGet, doPost by default After successful creation, a Java file will be generated, which will automatically have the doGet and ...

Posted by Louis11 on Sat, 11 May 2019 03:39:09 -0700

Exploring the Essentials of spring Container 1

1. Questions 1. What is a spring container? 2. How does the spring container start? 3. What is the nature of the spring container? 4. What role does the spring container play in the spring family? 5. spring container design ideas? 2. Keyword Container, Session, Context, Factory, Registry, Resolution, ...

Posted by pcw on Sat, 11 May 2019 02:10:41 -0700

Reading Notes and Practice Summary of High Performance Mysql

Preface: Recently I read a series of MySQL articles. The understanding of Mysql's basic knowledge is consistent with practice. mark it. Text: The basic knowledge of MySql is divided into four parts: first, concurrency control (read/write lock); second, transaction; third, multi-version concurrency control (MVCC); fourth, sto ...

Posted by cedtech31 on Fri, 10 May 2019 19:08:17 -0700

PostgreSQL Memory Table Options - unlogged table

Label PostgreSQL, memory table, unlogged table background Memory tables are often used in scenarios where persistence is not required, changes are frequent, and RT is low. At present, the community version of PostgreSQL does not have the function of memory tables. postgrespro provides two plug-ins to implement similar functions of memory tab ...

Posted by RobM on Fri, 10 May 2019 07:04:16 -0700

Summary of pt-archiver in Percona-Toolkit

pt-archiver - Archive rows from a MySQL table into another table or a file. pt-archiver nibbles records from a MySQL table. The --source and --dest arguments use DSN syntax; if COPY is yes, --dest defaults to the key's value from --source. pt-archiver is a component of Percona-Toolkit toolkit, which is mainly used to archive and clean MySQL t ...

Posted by Jewelie on Fri, 10 May 2019 06:43:39 -0700

github Authorized Logon Tutorial and How to Design User Table for Third Party Authorized Logon

Requirement: If you want to comment on an article on the website, and the comment is for users to register and log in, how can you avoid this troublesome step? The answer is to login through third-party authorization. This article describes the github Authorized Login tutorial. Effect Experience Address: http://biaochenxuying.cn 1. github thi ...

Posted by figuringout on Fri, 10 May 2019 03:46:38 -0700

PHP Full Stack Learning Notes 3

trim() function for removing first and last spaces and special characters of strings Returns a string that has been stripped of spaces and special characters String trim (string str [, string charlist]); String object to be operated on by str, the second parameter is an optional parameter, select the character to be deleted from the string, do ...

Posted by md_grnahid on Fri, 10 May 2019 03:24:38 -0700

JeeSite 4.x Internationalization (i18n), Multilingualism, Localization

1. When login is supported, specify the language, or switch the language after login (param_lang=en) 2. Support Cookie Storage Language Settings, Use Session Storage without Cookie, Support Mobile 3. Support property files and databases to store translations and facilitate the management of translated data. 4. Translatable: Fixed data (e.g. pag ...

Posted by nephish on Thu, 09 May 2019 17:34:38 -0700