-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
2580 lines (1132 loc) · 79.4 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html class="theme-next gemini use-motion" lang="zh-Hans">
<head><meta name="generator" content="Hexo 3.8.0">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="theme-color" content="#222">
<meta http-equiv="Cache-Control" content="no-transform">
<meta http-equiv="Cache-Control" content="no-siteapp">
<link href="/lib/fancybox/source/jquery.fancybox.css?v=2.1.5" rel="stylesheet" type="text/css">
<link href="/lib/font-awesome/css/font-awesome.min.css?v=4.6.2" rel="stylesheet" type="text/css">
<link href="/css/main.css?v=5.1.4" rel="stylesheet" type="text/css">
<link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon-next.png?v=5.1.4">
<link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32-next.png?v=5.1.4">
<link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16-next.png?v=5.1.4">
<link rel="mask-icon" href="/images/logo.svg?v=5.1.4" color="#222">
<meta name="keywords" content="Hexo, NexT">
<meta name="description" content="学习与交流">
<meta property="og:type" content="website">
<meta property="og:title" content="陈先生的博客">
<meta property="og:url" content="http://yoursite.com/index.html">
<meta property="og:site_name" content="陈先生的博客">
<meta property="og:description" content="学习与交流">
<meta property="og:locale" content="zh-Hans">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="陈先生的博客">
<meta name="twitter:description" content="学习与交流">
<script type="text/javascript" id="hexo.configurations">
var NexT = window.NexT || {};
var CONFIG = {
root: '/',
scheme: 'Gemini',
version: '5.1.4',
sidebar: {"position":"left","display":"post","offset":12,"b2t":false,"scrollpercent":false,"onmobile":false},
fancybox: true,
tabs: true,
motion: {"enable":true,"async":false,"transition":{"post_block":"fadeIn","post_header":"slideDownIn","post_body":"slideDownIn","coll_header":"slideLeftIn","sidebar":"slideUpIn"}},
duoshuo: {
userId: '0',
author: '博主'
},
algolia: {
applicationID: '',
apiKey: '',
indexName: '',
hits: {"per_page":10},
labels: {"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}
}
};
</script>
<link rel="canonical" href="http://yoursite.com/">
<title>陈先生的博客</title>
</head>
<body itemscope itemtype="http://schema.org/WebPage" lang="zh-Hans">
<div class="container sidebar-position-left
page-home">
<div class="headband"></div>
<header id="header" class="header" itemscope itemtype="http://schema.org/WPHeader">
<div class="header-inner"><div class="site-brand-wrapper">
<div class="site-meta ">
<div class="custom-logo-site-title">
<a href="/" class="brand" rel="start">
<span class="logo-line-before"><i></i></span>
<span class="site-title">陈先生的博客</span>
<span class="logo-line-after"><i></i></span>
</a>
</div>
<p class="site-subtitle"></p>
</div>
<div class="site-nav-toggle">
<button>
<span class="btn-bar"></span>
<span class="btn-bar"></span>
<span class="btn-bar"></span>
</button>
</div>
</div>
<nav class="site-nav">
<ul id="menu" class="menu">
<li class="menu-item menu-item-home">
<a href="/" rel="section">
<i class="menu-item-icon fa fa-fw fa-home"></i> <br>
首页
</a>
</li>
<li class="menu-item menu-item-tags">
<a href="/tags/" rel="section">
<i class="menu-item-icon fa fa-fw fa-tags"></i> <br>
标签
</a>
</li>
<li class="menu-item menu-item-categories">
<a href="/categories/" rel="section">
<i class="menu-item-icon fa fa-fw fa-th"></i> <br>
分类
</a>
</li>
<li class="menu-item menu-item-archives">
<a href="/archives/" rel="section">
<i class="menu-item-icon fa fa-fw fa-archive"></i> <br>
归档
</a>
</li>
</ul>
</nav>
</div>
</header>
<main id="main" class="main">
<div class="main-inner">
<div class="content-wrap">
<div id="content" class="content">
<section id="posts" class="posts-expand">
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<div class="post-block">
<link itemprop="mainEntityOfPage" href="http://yoursite.com/2019/09/26/MsSQL数据库面试总结/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="陈十三">
<meta itemprop="description" content>
<meta itemprop="image" content="/images/1.jpg">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="陈先生的博客">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2019/09/26/MsSQL数据库面试总结/" itemprop="url">MySQL数据库面试总结</a></h1>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建于" itemprop="dateCreated datePublished" datetime="2019-09-26T17:56:52+08:00">
2019-09-26
</time>
</span>
<span class="post-category">
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-folder-o"></i>
</span>
<span class="post-meta-item-text">分类于</span>
<span itemprop="about" itemscope itemtype="http://schema.org/Thing">
<a href="/categories/面试/" itemprop="url" rel="index">
<span itemprop="name">面试</span>
</a>
</span>
</span>
<span class="post-comments-count">
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-comment-o"></i>
</span>
<a href="/2019/09/26/MsSQL数据库面试总结/#comments" itemprop="discussionUrl">
<span class="post-comments-count valine-comment-count" data-xid="/2019/09/26/MsSQL数据库面试总结/" itemprop="commentCount"></span>
</a>
</span>
<div class="post-wordcount">
<span class="post-meta-item-icon">
<i class="fa fa-file-word-o"></i>
</span>
<span class="post-meta-item-text">字数统计:</span>
<span title="字数统计">
</span>
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-clock-o"></i>
</span>
<span class="post-meta-item-text">阅读时长 ≈</span>
<span title="阅读时长">
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h2 id="MySQL索引"><a href="#MySQL索引" class="headerlink" title="MySQL索引"></a>MySQL索引</h2><h5 id="一、什么是索引,为什么要使用索引?"><a href="#一、什么是索引,为什么要使用索引?" class="headerlink" title="一、什么是索引,为什么要使用索引?"></a>一、什么是索引,为什么要使用索引?</h5><p>索引用于快速找出在某个列中有一特定值的行,不使用索引,MySQL必须从第一条记录开始读完整个表,直到找出相关的行,表越大,查询数据所花费的时间就越多,如果表中查询的列有一个索引,MySQL能够快速到达一个位置去搜索数据文件,而不必查看所有数据,那么将会节省很大一部分时间。</p>
<hr>
<h5 id="二、MySQL中索引的优点和缺点还有使用原则"><a href="#二、MySQL中索引的优点和缺点还有使用原则" class="headerlink" title="二、MySQL中索引的优点和缺点还有使用原则"></a>二、MySQL中索引的优点和缺点还有使用原则</h5><h6 id="优点:"><a href="#优点:" class="headerlink" title="优点:"></a>优点:</h6><ol>
<li>所有的MySql列类型(字段类型)都可以被索引,也就是可以给任意字段设置索引</li>
<li>大大加快数据的查询速度</li>
</ol>
<h6 id="缺点:"><a href="#缺点:" class="headerlink" title="缺点:"></a>缺点:</h6><ol>
<li>创建索引和维护索引要耗费时间,并且随着数据量的增加所耗费的时间也会增加</li>
<li>索引也需要占空间,我们知道数据表中的数据也会有最大上线设置的,如果我们有大量的索引,索引文件可能会比数据文件更快达到上线值</li>
<li>当对表中的数据进行增加、删除、修改时,索引也需要动态的维护,降低了数据的维护速度。</li>
</ol>
<h6 id="使用原则:"><a href="#使用原则:" class="headerlink" title="使用原则:"></a>使用原则:</h6><pre><code>1. 对经常更新的表就避免对其进行过多的索引,对经常用于查询的字段应该创建索引
2. 数据量小的表最好不要使用索引,因为由于数据较少,可能查询全部数据花费的时间比遍历索引的时间还要短,索引就可能不会产生优化效果。
3. 在一同值少的列上(字段上)不要建立索引,比如在学生表的"性别"字段上只有男,女两个不同值。相反的,在一个字段上不同值较多可以建立索引。
</code></pre><hr>
<h5 id="三、MySQL存储引擎"><a href="#三、MySQL存储引擎" class="headerlink" title="三、MySQL存储引擎"></a>三、MySQL存储引擎</h5><h6 id="MyISAM存储引擎"><a href="#MyISAM存储引擎" class="headerlink" title="MyISAM存储引擎"></a><strong>MyISAM存储引擎</strong></h6><p>不支持事务、也不支持外键,优势是访问速度快,对事务完整性没有 要求以select,insert为主的应用基本上可以用这个引擎来创建表</p>
<p>支持3种不同的存储格式,分别是:静态表;动态表;压缩表</p>
<p>静态表:表中的字段都是非变长字段,这样每个记录都是固定长度的,优点存储非常迅速,容易缓存,出现故障容易恢复;缺点是占用的空间通常比动态表多(因为存储时会按照列的宽度定义补足空格)ps:在取数据的时候,默认会把字段后面的空格去掉,如果不注意会把数据本身带的空格也会忽略。</p>
<p>动态表:记录不是固定长度的,这样存储的优点是占用的空间相对较少;缺点:频繁的更新、删除数据容易产生碎片,需要定期执行OPTIMIZE TABLE或者myisamchk-r命令来改善性能</p>
<p>压缩表:因为每个记录是被单独压缩的,所以只有非常小的访问开支</p>
<h6 id="InnoDB存储引擎"><a href="#InnoDB存储引擎" class="headerlink" title="InnoDB存储引擎"></a><strong>InnoDB存储引擎</strong></h6><p>该存储引擎提供了具有提交、回滚和崩溃恢复能力的事务安全。但是对比MyISAM引擎,写的处理效率会差一些,并且会占用更多的磁盘空间以保留数据和索引。<br>InnoDB存储引擎的特点:支持自动增长列,支持外键约束</p>
<h6 id="MEMORY存储引擎"><a href="#MEMORY存储引擎" class="headerlink" title="MEMORY存储引擎"></a><strong>MEMORY存储引擎</strong></h6><p>Memory存储引擎使用存在于内存中的内容来创建表。每个memory表只实际对应一个磁盘文件,格式是.frm。memory类型的表访问非常的快,因为它的数据是放在内存中的,并且默认使用HASH索引,但是一旦服务关闭,表中的数据就会丢失掉。<br>MEMORY存储引擎的表可以选择使用BTREE索引或者HASH索引,两种不同类型的索引有其不同的使用范围</p>
<p>Hash索引优点:<br>Hash 索引结构的特殊性,其检索效率非常高,索引的检索可以一次定位,不像B-Tree 索引需要从根节点到枝节点,最后才能访问到页节点这样多次的IO访问,所以 Hash 索引的查询效率要远高于 B-Tree 索引。<br>Hash索引缺点: 那么不精确查找呢,也很明显,因为hash算法是基于等值计算的,所以对于“like”等范围查找hash索引无效,不支持;</p>
<p>Memory类型的存储引擎主要用于哪些内容变化不频繁的代码表,或者作为统计操作的中间结果表,便于高效地对中间结果进行分析并得到最终的统计结果,。对存储引擎为memory的表进行更新操作要谨慎,因为数据并没有实际写入到磁盘中,所以一定要对下次重新启动服务后如何获得这些修改后的数据有所考虑。</p>
<hr>
<h5 id="四、索引的结构"><a href="#四、索引的结构" class="headerlink" title="四、索引的结构"></a>四、索引的结构</h5><p>mysql索引的数据结构是树,常用的存储引擎innodb采用的是B+Tree。这里对B+Tree及其相关的</p>
<h6 id="查找树进行简要介绍:"><a href="#查找树进行简要介绍:" class="headerlink" title="查找树进行简要介绍:"></a>查找树进行简要介绍:</h6><h6 id="1、二叉排序树(也称为二叉查找树)"><a href="#1、二叉排序树(也称为二叉查找树)" class="headerlink" title="1、二叉排序树(也称为二叉查找树)"></a>1、二叉排序树(也称为二叉查找树)</h6><p>二叉排序树是最简单的查找树,特点:</p>
<p>a)是一棵二叉树;</p>
<p>b)左子树所有结点的值小于它的父结点的值,右子树所有结点的值大于它的父结点的值。</p>
<h6 id="2、平衡二叉树(又称AVL树)"><a href="#2、平衡二叉树(又称AVL树)" class="headerlink" title="2、平衡二叉树(又称AVL树)"></a>2、平衡二叉树(又称AVL树)</h6><p>平衡二叉树是二叉排序树的基础上,对树的深度进行了限制,从而减少了查找比较的次数,</p>
<p>特点:</p>
<p>a)是一棵二叉树;</p>
<p>b)左子树所有结点的值小于它的父结点的值,右子树所有结点的值大于它的父结点的值;</p>
<p>c)左子树与右子树的深度差在-1、0、1内,否则对子树进行旋转调整。</p>
<h6 id="3、B-树(B-Tree)"><a href="#3、B-树(B-Tree)" class="headerlink" title="3、B-树(B-Tree)"></a>3、B-树(B-Tree)</h6><p>B-树是多路平衡查找树,相对于平衡二叉树,对父结点的直接子结点个数,不再仅限于2,</p>
<p>可以指定m(自定义),这样可以在树的深度不大量增加的前提下,保存更多的结点。</p>
<p>B-树是通常在文件系统中使用。</p>
<p>特点:</p>
<p>a)树的每个结点最多有m(自定义)子结点;</p>
<p>b)若根结点不是叶子结点,则至少有两个子结点;</p>
<p>c) 除根结点外的所有非叶子结点,至少有m/2上取整个子结点;</p>
<p>d)父结点下的最左边子树所有结点的值均小于父结点最小值,</p>
<p>最右边子树所有结点的值均大于父结点最大值,</p>
<p>其余中间子树所有结点的值则介于指针的父结点两边的值;</p>
<p>e)所有叶子结点都在同一层;</p>
<p>注意:所有结点均带有值</p>
<h6 id="4、B-树(B-Tree)"><a href="#4、B-树(B-Tree)" class="headerlink" title="4、B+树(B+Tree)"></a>4、B+树(B+Tree)</h6><p>B+树是B-树变体,相对于B-树,叶子结点的值包含了所有的值,所有父结点的值是重复了叶子结点的值,</p>
<p>父结点只起索引查找的作用,同时所叶子结点也也构成了一条有序的链表。</p>
<p>mysql中存储引擎为innodb的索引,采用的数据结构即是B+树。</p>
<p>特点:</p>
<p>a)有m个子结点的父结点就有m个关键字;</p>
<p>b)所有叶子结点包含了所有关键字(值),且构成由小到大的有序链表;</p>
<p>c) 所有非叶子结点起索引作用,结点仅包含子树所有结点的最大值;</p>
<p>d)所有叶子结点都在同一层;</p>
<p>注意:叶子结点包含了所有的关键字(值)。</p>
<h6 id="5、B树(BTree)"><a href="#5、B树(BTree)" class="headerlink" title="5、B树(BTree)"></a>5、B<em>树(B</em>Tree)</h6><p>B*树是B+树的变体,相对B+树,增加了对同一层非叶子结点的指针,即同一层非叶子结点也构成了一条链表。</p>
<h6 id="总结:"><a href="#总结:" class="headerlink" title="总结:"></a>总结:</h6><p>综上,上述各种查找树是相互关联的。</p>
<p>归结到mysql中innodb索引,采用的是B+树,如聚簇索引,是通过主键来聚集数据,采用B+树实现,</p>
<p>这即是一种索引,也是mysql的一种数据存储结构,叶子结点包含了所有的数据,非叶子结点仅起索引作用(若</p>
<p>没有定义主键,则innodb会隐式定义一个主键来作为聚簇索引)</p>
<h5 id="索引的类型"><a href="#索引的类型" class="headerlink" title="索引的类型"></a>索引的类型</h5><p>注意:索引是在存储引擎中实现的,也就是说不同的存储引擎,会使用不同的索引</p>
<p> MyISAM和InnoDB存储引擎:只支持BTREE索引, 也就是说默认使用BTREE,不能够更换MEMORY/HEAP存储引擎:支持HASH和BTREE索引</p>
<p>索引我们分为四类来讲 单列索引(普通索引,唯一索引,主键索引)、组合索引、全文索引、空间索引、</p>
<ol>
<li><strong>单列索引</strong>:一个索引只包含单个列,但一个表中可以有多个单列索引。 这里不要搞混淆了。</li>
</ol>
<p> (1)普通索引:MySQL中基本索引类型,没有什么限制,允许在定义索引的列中插入重复值和空值,纯粹为了查询数据更快一点。</p>
<p> (2)唯一索引:索引列中的值必须是唯一的,但是允许为空值,</p>
<p> (3)主键索引:是一种特殊的唯一索引,不允许有空值。</p>
<p> 2. <strong>组合索引</strong></p>
<p> 在表中的多个字段组合上创建的索引,只有在查询条件中使用了这些字段的左边字段时,索引才会被使用,使用组合索引时遵循最左前缀集合。</p>
<ol start="3">
<li><strong>全文索引</strong></li>
</ol>
<p> 全文索引,只有在MyISAM引擎上才能使用,只能在CHAR,VARCHAR,TEXT类型字段上使用全文索引,介绍了要求,说说什么是全文索引,就是在一堆文字中,通过其中的某个关键字等,就能找到该字段所属的记录行,比如有”你是个靓仔,靓女 …” 通过靓仔,可能就可以找到该条记录。这里说的是可能,因为全文索引的使用涉及了很多细节,我们只需要知道这个大概意思,如果感兴趣进一步深入使用它,那么看下面测试该索引时,会给出一个博文,供大家参考。</p>
<ol start="4">
<li><strong>空间索引</strong></li>
</ol>
<p> 空间索引是对空间数据类型的字段建立的索引,MySQL中的空间数据类型有四种,GEOMETRY、POINT、LINESTRING、POLYGON。在创建空间索引时,使用SPATIAL关键字。要求,引擎为MyISAM,创建空间索引的列,必须将其声明为NOT NULL。具体细节看下面</p>
<h2 id="MySQL事务"><a href="#MySQL事务" class="headerlink" title="MySQL事务"></a>MySQL事务</h2><h6 id="原子性"><a href="#原子性" class="headerlink" title="原子性"></a>原子性</h6><p> 一个事务中的所有操作,要么都完成,要么都不执行.对于一个事务来说,不可能只执行其中的一部分.</p>
<h6 id="一致性"><a href="#一致性" class="headerlink" title="一致性"></a>一致性</h6><p> 数据库总是从一个一致性的状态转换到另外一个一致性状态.</p>
<h6 id="隔离性"><a href="#隔离性" class="headerlink" title="隔离性"></a>隔离性</h6><p> 一个事务所做的修改在最终提交以前,对其它事务是不可见的.多个事务之间的操作相互不影响. 每降低一个事务 隔离级别都能提高数据库的并发</p>
<p> 1.读未提交 其它事务未提交就可以读<br> 2.读已提交 其它事务只有提交了才能读<br> 3.可重复读 只管自己启动事务时候的状态,不受其它事务的影响(mysql默认)<br> 4.事务串行 按照顺序提交事务保证了数据的安全性,但无法实现并发</p>
<p> 会出现的问题:</p>
<p> <strong>脏读</strong>:当一个事务读取到另外一个事务修改但未提交的数据时,就可能发生脏读。</p>
<p> <strong>不可重复读</strong>:“不可重复读”现象发生在当执行SELECT 操作时没有获得读锁或者SELECT操作执行完后马上释放了读锁; 另外一个事务对数据进行了更新,读到了不同的结果.(update)</p>
<p> <strong>幻读</strong>:“幻读”又叫”幻象读”,是’’不可重复读’’的一种特殊场景:当事务1两次执行’’SELECT … WHERE’’检索一定范围内数据的操作中间,事务2在这个表中创建了(如[[INSERT]])了一行新数据,这条新数据正好满足事务1的“WHERE”子句。(delete,insert.)</p>
<h6 id="持久性"><a href="#持久性" class="headerlink" title="持久性"></a>持久性</h6><p> 一旦一个事务已经提交了,就算服务器崩溃,仍然需要在下次启动的时候自动恢复.</p>
<p> 结合事务日志完成:</p>
<p> 事务日志写入磁盘的时候是顺序IO,写数据文件的时候是随机IO</p>
<p> 一旦事务提交了,必须立即执行一个IO操作,确保此事务立即写入磁盘.</p>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</div>
</article>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<div class="post-block">
<link itemprop="mainEntityOfPage" href="http://yoursite.com/2019/08/19/python-django-自定义过滤器/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="陈十三">
<meta itemprop="description" content>
<meta itemprop="image" content="/images/1.jpg">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="陈先生的博客">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2019/08/19/python-django-自定义过滤器/" itemprop="url">python django 自定义过滤器</a></h1>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建于" itemprop="dateCreated datePublished" datetime="2019-08-19T11:20:35+08:00">
2019-08-19
</time>
</span>
<span class="post-category">
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-folder-o"></i>
</span>
<span class="post-meta-item-text">分类于</span>
<span itemprop="about" itemscope itemtype="http://schema.org/Thing">
<a href="/categories/python/" itemprop="url" rel="index">
<span itemprop="name">python</span>
</a>
</span>
</span>
<span class="post-comments-count">
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-comment-o"></i>
</span>
<a href="/2019/08/19/python-django-自定义过滤器/#comments" itemprop="discussionUrl">
<span class="post-comments-count valine-comment-count" data-xid="/2019/08/19/python-django-自定义过滤器/" itemprop="commentCount"></span>
</a>
</span>
<div class="post-wordcount">
<span class="post-meta-item-icon">
<i class="fa fa-file-word-o"></i>
</span>
<span class="post-meta-item-text">字数统计:</span>
<span title="字数统计">
</span>
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-clock-o"></i>
</span>
<span class="post-meta-item-text">阅读时长 ≈</span>
<span title="阅读时长">
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h2 id="前言"><a href="#前言" class="headerlink" title="前言"></a>前言</h2><p>最近写自己的django项目的时候,遇到了一个问题:前端无法解析json格式文本,本来是打算在前端调用存在数据库里的一些json数据,但是用js的json转换时出错了。这应该是一个常见的问题,前端html将json字符串中的 “ 双引号 转义成了 &qout; 导致js无法转换json。</p>
<p>这个时候想到的一个方法就是在后端将json的字符串加上转义字符\,不过想了一下,还是比较繁琐的。这个时候django的自定义过滤就是仙女下凡一样,完美的解决了我的需求,在之后的一些功能需求上,自定义过滤器也给了我很大的帮助,所以在整理记录一下,随便开启一下很久没动过的博客。</p>
## 模板标签
官方文档: https://docs.djangoproject.com/zh-hans/2.0/ref/templates/builtins/
内建标签
django给我们提供了内建标签的功能,主要功能是在前端模板编写循环语句或者判断语句以及导出某个子模块(常见的就是 csrf_token 这个标签用于跨站请求伪造保护)
而我觉得一些模板标签参与的语句类型如下:
<!--noindex-->
<div class="post-button text-center">
<a class="btn" href="/2019/08/19/python-django-自定义过滤器/#more" rel="contents">
阅读全文 »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</div>
</article>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<div class="post-block">
<link itemprop="mainEntityOfPage" href="http://yoursite.com/2019/07/20/lvs负载均衡简介-与Linux下lvs-NAT模式实验/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="陈十三">
<meta itemprop="description" content>
<meta itemprop="image" content="/images/1.jpg">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="陈先生的博客">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2019/07/20/lvs负载均衡简介-与Linux下lvs-NAT模式实验/" itemprop="url">lvs负载均衡简介 与Linux下lvs NAT模式实验</a></h1>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建于" itemprop="dateCreated datePublished" datetime="2019-07-20T19:00:57+08:00">
2019-07-20
</time>
</span>
<span class="post-comments-count">
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-comment-o"></i>
</span>
<a href="/2019/07/20/lvs负载均衡简介-与Linux下lvs-NAT模式实验/#comments" itemprop="discussionUrl">
<span class="post-comments-count valine-comment-count" data-xid="/2019/07/20/lvs负载均衡简介-与Linux下lvs-NAT模式实验/" itemprop="commentCount"></span>
</a>
</span>
<div class="post-wordcount">
<span class="post-meta-item-icon">
<i class="fa fa-file-word-o"></i>
</span>
<span class="post-meta-item-text">字数统计:</span>
<span title="字数统计">
</span>
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-clock-o"></i>
</span>
<span class="post-meta-item-text">阅读时长 ≈</span>
<span title="阅读时长">
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h2 id="LVS简介"><a href="#LVS简介" class="headerlink" title="LVS简介"></a>LVS简介</h2><p>LVS是 Linux Virtual Server 的简称,也就是Linux虚拟服务器。使用 LVS 可以达到的技术目标是:通过 LVS 达到的负载均衡技术和 Linux 操作系统实现一个高性能高可用的 Linux 服务器集群,它具有良好的可靠性、可扩展性和可操作性。从而以低廉的成本实现最优的性能。LVS 是一个实现负载均衡集群的开源软件项目,LVS架构从逻辑上可分为调度层、Server集群层和共享存储。</p>
<h3 id="LVS的组成"><a href="#LVS的组成" class="headerlink" title="LVS的组成"></a>LVS的组成</h3><p>LVS 由2部分程序组成,包括 ipvs 和 ipvsadm。 </p>
<ol>
<li>ipvs(ip virtual server):一段代码工作在内核空间,叫ipvs,是真正生效实现调度的代码。 </li>
<li>ipvsadm:另外一段是工作在用户空间,叫ipvsadm,负责为ipvs内核框架编写规则,定义谁是集群服务,而谁是后端真实的服务器(Real Server)</li>
</ol>
<h3 id="LVS的工作原理"><a href="#LVS的工作原理" class="headerlink" title="LVS的工作原理"></a>LVS的工作原理</h3><ol>
<li>当用户向负载均衡调度器(Director Server)发起请求,调度器将请求发往至内核空间</li>
<li>PREROUTING链首先会接收到用户请求,判断目标IP确定是本机IP,将数据包发往INPUT链</li>
<li>IPVS是工作在INPUT链上的,当用户请求到达INPUT时,IPVS会将用户请求和自己已定义好的集群服务进行比对,如果用户请求的就是定义的集群服务,那么此时IPVS会强行修改数据包里的目标IP地址及端口,并将新的数据包发往POSTROUTING链</li>
<li>POSTROUTING链接收数据包后发现目标IP地址刚好是自己的后端服务器,那么此时通过选路,将数据包最终发送给后端的服务器<br><img src="https://images2015.cnblogs.com/blog/781035/201702/781035-20170207085512619-1627288925.png" alt></li>
</ol>
<p>VIP:向外部直接面向用户请求,作为用户请求的目标的IP地址。</p>
<!--noindex-->
<div class="post-button text-center">
<a class="btn" href="/2019/07/20/lvs负载均衡简介-与Linux下lvs-NAT模式实验/#more" rel="contents">
阅读全文 »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</div>
</article>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<div class="post-block">
<link itemprop="mainEntityOfPage" href="http://yoursite.com/2019/07/19/Linux编译安装MySQL/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="陈十三">
<meta itemprop="description" content>
<meta itemprop="image" content="/images/1.jpg">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="陈先生的博客">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2019/07/19/Linux编译安装MySQL/" itemprop="url">Linux编译安装MySQL</a></h1>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建于" itemprop="dateCreated datePublished" datetime="2019-07-19T23:01:29+08:00">
2019-07-19
</time>
</span>
<span class="post-category">
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-folder-o"></i>
</span>
<span class="post-meta-item-text">分类于</span>
<span itemprop="about" itemscope itemtype="http://schema.org/Thing">
<a href="/categories/Linux/" itemprop="url" rel="index">
<span itemprop="name">Linux</span>
</a>
</span>
</span>
<span class="post-comments-count">
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-comment-o"></i>
</span>
<a href="/2019/07/19/Linux编译安装MySQL/#comments" itemprop="discussionUrl">
<span class="post-comments-count valine-comment-count" data-xid="/2019/07/19/Linux编译安装MySQL/" itemprop="commentCount"></span>
</a>
</span>
<div class="post-wordcount">
<span class="post-meta-item-icon">
<i class="fa fa-file-word-o"></i>
</span>
<span class="post-meta-item-text">字数统计:</span>
<span title="字数统计">
</span>