Support and improvement of the web application презентация

Слайд 2

Improving the client part Optimization of the server part Database refactoring

Improving the client part
Optimization of the server part
Database refactoring

Слайд 3

Improving the client part

Improving the client part

Слайд 4

The need of well-crafted UI

The need of well-crafted UI

Слайд 5

Optimization of the server part

Optimization of the server part

Слайд 6

Server optimization problems How to Make server run faster Simplify procedure of debugging

Server optimization problems How to
Make server
run faster
Simplify procedure
of debugging

Слайд 7

Solutions Getting rid of repetitive code sections Partitioning large modules into submodules

Solutions

Getting rid of repetitive code sections
Partitioning large modules into submodules

Слайд 8

Database refactoring

Database refactoring

Слайд 9

Database refactoring Structure of database Writing queries

Database refactoring

Structure of database

Writing queries

Слайд 10

Incorrect database structure

Incorrect database structure

Слайд 11

Correct database structure

Correct database structure

Слайд 12

Writing queries Table “A” Table “B”

Writing queries

Table “A”

Table “B”

Слайд 13

Writing queries SELECT … FROM (A * B) WHERE STREET

Writing queries

SELECT … FROM (A * B) WHERE STREET = “BAKER”;
O(N2)
SELECT

… FROM A *
(SELECT ... FROM B
WHERE STREET = “BAKER”);
O(N)

N times less time

Слайд 14

Improving the client part Optimization of the server part Database refactoring

Improving the client part
Optimization of the server part
Database refactoring

Имя файла: Support-and-improvement-of-the-web-application.pptx
Количество просмотров: 59
Количество скачиваний: 0