Tag:Enterprise application
-
Time:2020-10-27
On July 7, PostgresConf.CN2019 On the last day of the conference (pcc219 for short), training day, together with more than 400 pgers, continued to share a PG technology development feast for pger, including dege, a senior product expert from Alibaba cloud, and Zhu Xianwen, CEO of Chengdu Wenwu Information Technology Co., Ltd. Training day, from […]
-
Time:2020-7-5
Why do we have to learn webpack? At present, the most widely used packaging tool for major Internet enterprises is webpackMaster its use, you can quickly start the front-end work of most Internet enterprises. Facing the fresh graduates who only have basic theoretical knowledge and you who can start working quickly after short-term understanding, who will be […]
-
Time:2020-5-15
Environmental requirements The minimum hardware configuration: 1 core CPU, 1G memory (1 + 1). Note: if you have more applications, but the hardware configuration of the host node is low, it is recommended to enable virtual virtual memory when deploying the node; 2G or more memory is recommended for production environment; Recommended installation system: 64 […]
-
Time:2020-4-23
Author: Li Ning Source: Boyun technology community / Boyun Research Institute In the current microservice practice solutions, spring cloud and Dubbo, as the mainstream landing solutions, play an increasingly important role in the enterprise application architecture. This paper discusses how the enterprise application architecture evolves from microservice architecture to service mesh architecture, and forms the […]
-
Time:2019-3-10
1. Stateless value: Stateless servers can handle many users with very few objects. The more users in idle state, the more useful the stateless servers are. 2. Session state: Relevance: Session state is only related to the current session. It exists in business transactions and is separate from other sessions and their business transactions. The […]
-
Time:2019-3-9
1. The temptation of distribution objects: Object distribution in middleware is very useful for transparent upper layer, but cross-process, cross-machine (and network) calls affect performance! 2. Remote and local interfaces: 1) Objects accessed remotely need to use coarse-grained interfaces, while objects accessed locally need fine-grained interfaces (local connections can provide coarse-grained objects when optimizing performance) […]
-
Time:2019-2-28
Consider three aspects of technology practice: continuous integration, driving test development and refactoring 1. Start at the domain level 1) Transaction script mode is the simplest, suitable for building on relational database; domain model needs very professional technology, as well as the connection of fish database; table module mode compromise, environment with very powerful recordset […]
-
Time:2019-2-24
1. Transaction scripts 1) Call the database: Transaction scripts compose all logic into a single process in which the database is invoked directly or only through a simple database store. 2) script processing: Each transaction has its own transaction script, although common subtasks between transactions can be decomposed into multiple subroutines. 3) Operating mechanism: A. […]
-
Time:2019-2-21
1. Table data entry Acting as an object for database table access entry, an instance handles all rows in the table. 1) Operating mechanism: Table data entry contains all the SQL used to access a single table or attempt, such as selection, insertion, update, deletion, etc. Other code calls its methods to implement all interactions […]
-
Time:2019-2-15
1. Unit of Work It is used to maintain the list of objects affected by business transactions and coordinate the write of changes and the resolution of concurrency problems. As follows: 1) Operating mechanism: Key: It’s the submission that decides what to do. It opens a transaction, does all concurrent checks (using pessimistic or optimistic […]
-
Time:2019-2-9
1. Model choices: 1) Domain logic complexity: 2) Choice: When the domain logic complexity is low, choose the thing script. If the development environment has a large number of recordset-based tools (. Net and VS), you can choose the table module. When the development team is experienced, choose the domain model. The three models […]
-
Time:2019-1-31
One of the most important reasons for the success of relational database is the existence of SQL, which is the standard language for database communication. 1. Architectural pattern: How to drive domain logic to access data: SQL statements are embedded in programming languages. Line data entry, table data entry: Separating SQL access from domain logic […]