-
Notifications
You must be signed in to change notification settings - Fork 0
/
all_1.html
930 lines (632 loc) · 26 KB
/
all_1.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
<!DOCTYPE html>
<!--[if IEMobile 7 ]><html class="no-js iem7"><![endif]-->
<!--[if lt IE 9]><html class="no-js lte-ie8"><![endif]-->
<!--[if (gt IE 8)|(gt IEMobile 7)|!(IEMobile)|!(IE)]><!--><html class="no-js"><!--<![endif]-->
<head>
<meta charset="utf-8">
<title>
搁羽念风
</title>
<meta name="author" content="">
<meta name="description" content="">
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="asset/css/screen.css" media="screen, projection" rel="stylesheet" type="text/css">
<link href="atom.xml" rel="alternate" title="搁羽念风" type="application/atom+xml">
<script src="asset/js/modernizr-2.0.js"></script>
<script src="asset/js/jquery.min.js"></script>
<script src="asset/highlightjs/highlight.pack.js"></script>
<link href="asset/highlightjs/styles/solarized_light.css" media="screen, projection" rel="stylesheet" type="text/css">
<script>hljs.initHighlightingOnLoad();</script>
<style type="text/css">
.cat-children-p{ padding: 6px 0px;}
.hljs{background: none;}
</style>
<script type="text/javascript">
var isAddSildbar = true;
</script>
<script src="asset/js/octopress.js" type="text/javascript"></script>
</head>
<script type="text/javascript">
//链接新开窗口
function addBlankTargetForLinks () {
$('a[href^="http"]').each(function(){
$(this).attr('target', '_blank');
});
}
$(document).ready(function(event) {
addBlankTargetForLinks();
});
</script>
<body >
<header role="banner"><hgroup>
<h1><a href="index.html">搁羽念风</a></h1>
<h2></h2>
</hgroup>
</header>
<nav role="navigation"><ul class="subscription" data-subscription="rss">
<li><a href="atom.xml" rel="subscribe-rss" title="subscribe via RSS">RSS</a></li>
</ul>
<form action="http://google.com/search" method="get">
<fieldset role="search">
<input type="hidden" name="q" value="site:" />
<input class="search" type="text" name="q" results="0" placeholder="Search"/>
</fieldset>
</form>
<ul class="main-navigation">
<li id=""><a target="self" href="index.html">Home</a></li>
<li id=""><a target="_self" href="archives.html">Archives</a></li>
</ul>
</nav>
<div id="main">
<div id="content">
<div class="blog-index">
<article>
<header>
<h1 class="entry-title"><a href="15560194068510.html">resful 最佳实践</a></h1>
<p class="meta"><time datetime="2019-04-23T19:36:46+08:00"
pubdate data-updated="true">2019/4/23</time></p>
</header>
<div class="entry-content">
<h2 id="toc_0">url设计</h2>
<ol>
<li>推荐使用复数名词 <code>/employees/21</code></li>
<li>在资源集合URL 上使用GET方法,更加直观 <code>GET /employees?state=external</code></li>
<li>对特定资源进行过滤, 将搜索字符串附加到查询参数中即可 <code>GET /employees?state=internal</code></li>
</ol>
<h2 id="toc_1">使用http方法操作资源(CURD)</h2>
<blockquote>
<p>这种方式可以用简洁的方式获取7种操作资源的方式<br/>
如果一个请求是 indempotent(即发送两个一样的请求,后一个会覆盖前一个),此时使用PUT方法,否则使用POST方法</p>
</blockquote>
<table>
<thead>
<tr>
<th></th>
<th>Post(创建)</th>
<th>GET(读取)</th>
<th>PUT(更新)</th>
<th>DELETE(删除)</th>
</tr>
</thead>
<tbody>
<tr>
<td>/employees</td>
<td>创建</td>
<td>列出</td>
<td>批量更新</td>
<td>删除所有</td>
</tr>
<tr>
<td>/employees/56</td>
<td>X</td>
<td>获取56号员工的信息</td>
<td>更新56号员工的信息</td>
<td>删除56号员工的信息</td>
</tr>
</tbody>
</table>
<h2 id="toc_2">非资源请求用动词</h2>
<blockquote>
<p>使用动词来区分资源和非资源,url中使用动词而非名词 <code>GET /translate?from=de_DE&to=en_US&text=Hallo</code><br/>
增加资源动作控制参数 <code>PUT /articles/id?published=true</code><br/>
把动作转换为一个可以操作的资源 例如github,"喜欢"一个gist,转换为增加一个<code>/gists/id/star</code>子资源,对其操作 <code>PUT /gists/id/star</code>,<code>DELETE /gists/:id/star</code></p>
</blockquote>
<h2 id="toc_3">使用标准 http 响应码</h2>
<h3 id="toc_4">请求成功:</h3>
<ul>
<li>200 OK: 请求已成功,Body有返回内容, 用于 GET Method 的API 返回码</li>
<li>201 Created: 请求已经被实现,资源被创建. 用于 POST Method的同步类型API返回码</li>
<li>202 Accepted: 服务器已经接受请求,但尚未处理. 用于 POST Method的异步类型API返回码</li>
<li>204 No Content: 服务器成功处理了请求,但没有返回任何内容, 用于 DELETE/PUT Method 的API的返回码</li>
</ul>
<h3 id="toc_5">因为客户端原因导致请求失败:</h3>
<ul>
<li>400 Bad Request: 如参数错误,格式错误</li>
<li>401 Unauthorized: 用户未被认证, 如果密码错误,证书错误</li>
<li>403 Forbidden: 用户权限不够</li>
<li>404 Not Found: 服务器无此资源, 通常为URL不存在,或者某个Method不存在</li>
<li>409 Conflict: 请求存在冲突,无法处理该请求 (比如某个资源禁止被再次修改,但请求想修改该资源,就要返回409)</li>
</ul>
<h3 id="toc_6">因服务端原因导致请求失败:</h3>
<ul>
<li>500 Internal Server Error: 服务端错误消息,服务器遇到一个未曾预料的状况</li>
<li>501 Not Implemented: 服务器不支持当前请求所需要的某个功能</li>
<li>503 Service Unavailable: 如服务器维护中或者过载等</li>
</ul>
<h2 id="toc_7">返回有用的提示信息</h2>
<h3 id="toc_8">除了合适的状态码之外,还应当在正文中提供有用的错误提示和详细的描述</h3>
<pre class="line-numbers"><code class="language-javascript"> // 400 Bad Request
{
"message": "You submitted an invalid state. Valid state values are 'internal' or 'external'",
"errorCode": 352,
"additionalInformation" :"http://www.domain.com/rest/errorcode/352"
}
</code></pre>
<h3 id="toc_9">响应中提供浏览其他API的链接</h3>
<blockquote>
<p>如,在响应参数中添加一个 links 字段,让客户端可以自动变更,也可以自我描述,需要提供的文档更少</p>
</blockquote>
<pre class="line-numbers"><code class="language-javascript">{
"id":1,
"name":"Paul",
"links": [
{
"rel": "salary",
"href": "/employees/1/salaryStatements"
}
]
}
</code></pre>
<h3 id="toc_10">提供分页信息</h3>
<blockquote>
<p>资源较多时,可以用 <code>page</code>,<code>page_size</code> 来提供分页 <code>/employees?page=30&page_size=15 #返回 30 到 45 的员工</code><br/>
还可以添加上一页和下一页的链接示例</p>
</blockquote>
<pre class="line-numbers"><code class="language-text"> GET /employees?offset=20&limit=10
{
"offset": 20,
"limit": 10,
"total": 3465,
"employees": [
//...
],
"links": [
{
"rel": "nextPage",
"href": "/employees?offset=30&limit=10"
},
{
"rel": "previousPage",
"href": "/employees?offset=10&limit=10"
}
]
}
</code></pre>
<h2 id="toc_11">使用https</h2>
<blockquote>
<p>禁止非ssl的url重定向到ssl的url</p>
</blockquote>
<h2 id="toc_12">授权</h2>
<ul>
<li>验证(Authentication) 为了确定用户申明的身份</li>
<li>授权(Authorization) 为用户增加某个资源的操作权限</li>
</ul>
<h2 id="toc_13">Location</h2>
<p>在响应的header中使用,一般为客户端感兴趣的资源url,如果成功创建一个资源后,把新资源url放在Location中<br/>
异步创建请求,也可以在响应 202的同时,添加一个可以异步状态查询的地址</p>
<h2 id="toc_14">API地址</h2>
<p>在url中指定API的版本号 <code>https://api.github.com/v3</code><br/>
如果api变化很大,可以把api设计为子域名 <code>https://v3.api.demo.com</code><br/>
不需要次级版本,只有当接口不兼容,才应该变更版本号</p>
<h3 id="toc_15">两种实现方式</h3>
<ul>
<li> url中 如<code>https://example.com/api/v1</code>,
<ul>
<li>版本明确,方便调试</li>
<li>不同版本协议解析可以放在不同的服务器上</li>
<li>不用考虑协议兼容性,开发简便,升级不受影响</li>
</ul></li>
<li>HTTP Header 中
<ul>
<li>url简洁干净,符合RESTful惯例</li>
</ul></li>
</ul>
<h2 id="toc_16">连字符</h2>
<p>url 中应该尽量使用 "-" 来代替下划线"_"的使用,如<br/>
<code>http://api.example.restapi.org/blogs/mark-masse/entries/this-is-my-first-post</code></p>
<h2 id="toc_17">大小写</h2>
<p>根据 RFC3986 定义,URI 是对大小写敏感的,所以为了避免歧义,我们尽量用小写字符</p>
</div>
</article>
<article>
<header>
<h1 class="entry-title"><a href="15554074466566.html">git 一些常用的命令</a></h1>
<p class="meta"><time datetime="2019-04-16T17:37:26+08:00"
pubdate data-updated="true">2019/4/16</time></p>
</header>
<div class="entry-content">
<h2 id="toc_0">删除错误的提交</h2>
<pre class="line-numbers"><code class="language-text">// 重置改动到 某次提交
git reset commit_id
// 强制push, 远程的commit_id 之后的push将会被删掉
git push --force
</code></pre>
</div>
</article>
<article>
<header>
<h1 class="entry-title"><a href="15553150635573.html">给clickhouse 物化视图增加字段</a></h1>
<p class="meta"><time datetime="2019-04-15T15:57:43+08:00"
pubdate data-updated="true">2019/4/15</time></p>
</header>
<div class="entry-content">
<pre class="line-numbers"><code class="language-sql">-- 先查找一下sql路径
SELECT metadata_path FROM system.tables WHERE name = 'demo';
-- 摘除掉视图
DETACH table mid.play_block_status
-- 为 .inner.demo 表增加字段
alter table mid.`.inner.demo` add column ip String;
alter table mid.`.inner.demo` add column operator String;
-- 为 物化视图增加字段
根据第一步 查到的 metadata_path 路径, 为视图修改表结构
-- 重新加载视图
ATTACH table mid.play_block_status
</code></pre>
</div>
</article>
<article>
<header>
<h1 class="entry-title"><a href="15548815336055.html">php相关函数</a></h1>
<p class="meta"><time datetime="2019-04-10T15:32:13+08:00"
pubdate data-updated="true">2019/4/10</time></p>
</header>
<div class="entry-content">
<h3 id="toc_0">umask() 函数,改变umask值,使进程权限保持一致</h3>
<pre class="line-numbers"><code class="language-text">编写linux守护进程的时候,需要设置umask 这个值,用户权限屏蔽位,
当用户创建目录或者文件的时候,会有一个预设的权限 r=4,w=2,x=1
目录的预设权限是:0777 drwxrwxrwx
文件的预设权限为: 0666 -rw-rw-rw-
用这个权限减去 umask的权限,就是新建的目录或者文件的实际权限了
umask 默认值为 0022
新建文件夹权限为 0777 - 0022 = 0755
新建文件权限为 0666 - 0022 = 0644
</code></pre>
<h3 id="toc_1">pcntl_fork() 函数,在进程的当前位置产生分支(子进程)</h3>
<p>在当前进程的当前位置 产生分支(子进程), 都从fork位置继续执行, <br/>
成功时<br/>
父进程执行过程中得到的fork返回值为子进程号,子进程得到的是0<br/>
失败时<br/>
父进程将会返回 -1,不会创建子进程,并引发一个php错误</p>
<h3 id="toc_2">posix_setsid() 新建一个session终端,脱离原有终端的控制</h3>
<p>成功时<br/>
返回 session_id<br/>
失败时<br/>
返回 -1</p>
<h3 id="toc_3">php_sapi_name() 判断运行时环境</h3>
<h3 id="toc_4">extension_loaded() 检查一个扩展是否已经加载</h3>
<h3 id="toc_5">cli_set_process_title()</h3>
<p>为进程设定title <br/>
成功时<br/>
返回 true<br/>
失败时<br/>
返回 false</p>
</div>
</article>
<article>
<header>
<h1 class="entry-title"><a href="15543440484929.html">查看表占用磁盘空间大小</a></h1>
<p class="meta"><time datetime="2019-04-04T10:14:08+08:00"
pubdate data-updated="true">2019/4/4</time></p>
</header>
<div class="entry-content">
<pre class="line-numbers"><code class="language-sql">SELECT table, formatReadableSize(size) as size, rows, days, formatReadableSize(avgDaySize) as avgDaySize FROM (
SELECT
table,
sum(bytes) AS size,
sum(rows) AS rows,
min(min_date) AS min_date,
max(max_date) AS max_date,
(max_date - min_date) AS days,
size / (max_date - min_date) AS avgDaySize
FROM system.parts
WHERE active
GROUP BY table
ORDER BY rows DESC
)
</code></pre>
</div>
</article>
<article>
<header>
<h1 class="entry-title"><a href="15540894210258.html">php 生成uuid的统一类</a></h1>
<p class="meta"><time datetime="2019-04-01T11:30:21+08:00"
pubdate data-updated="true">2019/4/1</time></p>
</header>
<div class="entry-content">
<pre class="line-numbers"><code class="language-php"><?php
class UUID {
public static function v3($namespace, $name) {
if(!self::is_valid($namespace)) return false;
// Get hexadecimal components of namespace
$nhex = str_replace(array('-','{','}'), '', $namespace);
// Binary Value
$nstr = '';
// Convert Namespace UUID to bits
for($i = 0; $i < strlen($nhex); $i+=2) {
$nstr .= chr(hexdec($nhex[$i].$nhex[$i+1]));
}
// Calculate hash value
$hash = md5($nstr . $name);
return sprintf('%08s-%04s-%04x-%04x-%12s',
// 32 bits for "time_low"
substr($hash, 0, 8),
// 16 bits for "time_mid"
substr($hash, 8, 4),
// 16 bits for "time_hi_and_version",
// four most significant bits holds version number 3
(hexdec(substr($hash, 12, 4)) & 0x0fff) | 0x3000,
// 16 bits, 8 bits for "clk_seq_hi_res",
// 8 bits for "clk_seq_low",
// two most significant bits holds zero and one for variant DCE1.1
(hexdec(substr($hash, 16, 4)) & 0x3fff) | 0x8000,
// 48 bits for "node"
substr($hash, 20, 12)
);
}
public static function v4() {
return sprintf('%04x%04x-%04x-%04x-%04x-%04x%04x%04x',
// 32 bits for "time_low"
mt_rand(0, 0xffff), mt_rand(0, 0xffff),
// 16 bits for "time_mid"
mt_rand(0, 0xffff),
// 16 bits for "time_hi_and_version",
// four most significant bits holds version number 4
mt_rand(0, 0x0fff) | 0x4000,
// 16 bits, 8 bits for "clk_seq_hi_res",
// 8 bits for "clk_seq_low",
// two most significant bits holds zero and one for variant DCE1.1
mt_rand(0, 0x3fff) | 0x8000,
// 48 bits for "node"
mt_rand(0, 0xffff), mt_rand(0, 0xffff), mt_rand(0, 0xffff)
);
}
public static function v5($namespace, $name) {
if(!self::is_valid($namespace)) return false;
// Get hexadecimal components of namespace
$nhex = str_replace(array('-','{','}'), '', $namespace);
// Binary Value
$nstr = '';
// Convert Namespace UUID to bits
for($i = 0; $i < strlen($nhex); $i+=2) {
$nstr .= chr(hexdec($nhex[$i].$nhex[$i+1]));
}
// Calculate hash value
$hash = sha1($nstr . $name);
return sprintf('%08s-%04s-%04x-%04x-%12s',
// 32 bits for "time_low"
substr($hash, 0, 8),
// 16 bits for "time_mid"
substr($hash, 8, 4),
// 16 bits for "time_hi_and_version",
// four most significant bits holds version number 5
(hexdec(substr($hash, 12, 4)) & 0x0fff) | 0x5000,
// 16 bits, 8 bits for "clk_seq_hi_res",
// 8 bits for "clk_seq_low",
// two most significant bits holds zero and one for variant DCE1.1
(hexdec(substr($hash, 16, 4)) & 0x3fff) | 0x8000,
// 48 bits for "node"
substr($hash, 20, 12)
);
}
public static function is_valid($uuid) {
return preg_match('/^\{?[0-9a-f]{8}\-?[0-9a-f]{4}\-?[0-9a-f]{4}\-?'.
'[0-9a-f]{4}\-?[0-9a-f]{12}\}?$/i', $uuid) === 1;
}
}
// Usage
// Named-based UUID.
$v3uuid = UUID::v3('1546058f-5a25-4334-85ae-e68f2a44bbaf', 'SomeRandomString');
$v5uuid = UUID::v5('1546058f-5a25-4334-85ae-e68f2a44bbaf', 'SomeRandomString');
// Pseudo-random UUID
$v4uuid = UUID::v4();
?>
</code></pre>
</div>
</article>
<article>
<header>
<h1 class="entry-title"><a href="15529928360156.html">top命令常见的用法</a></h1>
<p class="meta"><time datetime="2019-03-19T18:53:56+08:00"
pubdate data-updated="true">2019/3/19</time></p>
</header>
<div class="entry-content">
<blockquote>
</blockquote>
</div>
</article>
<article>
<header>
<h1 class="entry-title"><a href="15529898481691.html">架构之CDN相关</a></h1>
<p class="meta"><time datetime="2019-03-19T18:04:08+08:00"
pubdate data-updated="true">2019/3/19</time></p>
</header>
<div class="entry-content">
<h2 id="toc_0">介绍</h2>
<p>CDN使用背景,图片的分布式存储</p>
<p>CDN 网络原理概述</p>
<p>批量添加、切换 CDN 的步骤和注意事项</p>
<p>多 CDN 切换的步骤和注意事项</p>
<p>CDN 访问故障分析</p>
<h2 id="toc_1">常见用法</h2>
<h3 id="toc_2">图片和静态资源的缓存</h3>
<h3 id="toc_3">一些变化不频繁的api缓存</h3>
<h2 id="toc_4">原理</h2>
<blockquote>
<p><code>wget -S -O /dev/null https://wx2.sinaimg.cn/crop.0.0.2000.1125/005K1HRGly1fzfme5l6ltj31jk0v9wm4.jpg</code></p>
</blockquote>
<h3 id="toc_5">一) 请求dns解析,并cname到cdn厂商的域名</h3>
<p><img src="media/15529898481691/15529924669316.jpg" alt="" style="width:1272px;"/></p>
<h3 id="toc_6">二) 再次请求dns解析,并获取到cdn厂商的全局负载均衡ip列表</h3>
<p><img src="media/15529898481691/15529924844889.jpg" alt="" style="width:1277px;"/></p>
<h3 id="toc_7">三) 全局负载均衡 根据客户端的<code>ip</code>,<code>url</code> 等信息内部请求 <code>区域负载均衡系统</code></h3>
<ol>
<li> <code>区域负载均衡</code>根据信息,逐层查找,获取离客户端<code>最近&有资源</code>的<code>缓存服务器</code>地址,</li>
<li> 返回给<code>全局负载均衡</code>(回源发生在这个阶段)</li>
<li> <code>全局负载均衡</code> 返回给客户端 该<code>缓存服务器</code>地址</li>
</ol>
<h3 id="toc_8">客户端请求<code>缓存服务器</code>,拿到文件</h3>
<p><img src="media/15529898481691/15529924296541.jpg" alt="" style="width:960px;"/></p>
<h2 id="toc_9">关键字</h2>
<h3 id="toc_10">回源</h3>
<blockquote>
<p>回源的意思就是,回到源头服务器取资源, 因为cdn为多级缓存,当请求资源404时,将逐层向上级cdn缓存获取资源,直至到服务器源站查找资源</p>
</blockquote>
<h3 id="toc_11">资源获取方式</h3>
<h4 id="toc_12">pull</h4>
<blockquote>
<p>逐层查找,资源不存在,最终到源头服务器获取资源并缓存到各级cdn</p>
</blockquote>
<h4 id="toc_13">push</h4>
<blockquote>
<p>源头服务器主动上传资源到cdn缓存服务器</p>
</blockquote>
</div>
</article>
<article>
<header>
<h1 class="entry-title"><a href="15524706279073.html">信号管理,当接收到关闭信号的时候,处理完最后的数据再关闭</a></h1>
<p class="meta"><time datetime="2019-03-13T17:50:27+08:00"
pubdate data-updated="true">2019/3/13</time></p>
</header>
<div class="entry-content">
<pre class="line-numbers"><code class="language-text"><?php
declare(ticks = 1);
function sig_handler($sig) {
switch($sig) {
case SIGINT:
error_log("接收信号SIGINT");
exit(1);
case SIGTERM:
error_log("接收信号SIGTERM");
exit(1);
case SIGHUP:
error_log("接收信号SIGHUP");
exit(1);
}
}
pcntl_signal(SIGINT, "sig_handler");
pcntl_signal(SIGTERM, "sig_handler");
pcntl_signal(SIGHUP, "sig_handler");
while (true) {
error_log("哈哈哈");
sleep(3);
}
</code></pre>
</div>
</article>
<article>
<header>
<h1 class="entry-title"><a href="15519281018034.html">golang 的时间库常用语法</a></h1>
<p class="meta"><time datetime="2019-03-07T11:08:21+08:00"
pubdate data-updated="true">2019/3/7</time></p>
</header>
<div class="entry-content">
<pre class="line-numbers"><code class="language-text">package main
import (
"fmt"
"time"
)
// 月份 1,01,Jan,January
// 日 2,02,_2
// 时 3,03,15,PM,pm,AM,am
// 分 4,04
// 秒 5,05
// 年 06,2006
// 周几 Mon,Monday
// 时区时差表示 -07,-0700,Z0700,Z07:00,-07:00,MST
// 时区字母缩写 MST
func main() {
fmt.Println(time.Now().Zone()) // 时区
fmt.Println(time.Now().UnixNano()) // 从1970年1.1 至今的纳秒数
fmt.Println(time.Now().UnixNano() / 1000000) // 从1970年1.1 至今的毫秒数
fmt.Println(time.Now().Unix()) // 从1970年1.1 至今的秒数
// 时间戳转换为 Y-m-d H:i:s
ttt := time.Unix(1551926194, 0) // 参数1 毫秒, 参数2 纳秒,将毫秒,纳秒转化为 time类型
ts := ttt.Format("2006-01-02 15:04:05")
fmt.Println(ts) // 将time类型转化为 Y-m-d H:i:s
tt, _ := time.Parse("2006-01-02 15:04:05", ts)
fmt.Println(tt.Unix())
tt2 := tt.Add(3 * time.Hour) // 给当前时间向前加3小时
tt3 := tt.Add(-3 * time.Hour) // 给当前时间向前加3小时
fmt.Println(tt2.Format("2006-01-02 15:04:05"))
fmt.Println(tt3.Format("2006-01-02 15:04:05"))
tt4 := tt.AddDate(3, 3, 3) // 给当前时间增加3年3个月3天
fmt.Println(tt4.Format("2006-01-02 15:04:05"))
// 简易的定时器
tick := time.Tick(1 * time.Second)
for t := range tick {
// 时间格式化转化为 标准时间段 类似于php的 Y-m-d H:i:s
fmt.Println(t.Format("2006-01-02 15:04:05"))
}
}
</code></pre>
</div>
</article>
<div class="pagination">
<a class="prev" href="all_2.html">← Older</a>
<a href="archives.html">Blog Archives</a>
<a class="next" href="all.html">Newer →</a>
</div>
</div>
<aside class="sidebar">
<section>
<h1>Categories</h1>
<ul id="recent_posts">
<li class="post">
<a href="linux.html"><strong>linux (3)</strong></a>
</li>
<li class="post">
<a href="%E6%95%B0%E6%8D%AE%E5%BA%93.html"><strong>数据库 (6)</strong></a>
<p class="cat-children-p">
<a href="redis.html">redis (3)</a>
<a href="clickhouse.html">clickhouse (3)</a>
</p>
</li>
<li class="post">
<a href="%E4%B8%AD%E9%97%B4%E4%BB%B6.html"><strong>中间件 (6)</strong></a>
<p class="cat-children-p">
<a href="%E6%B6%88%E6%81%AF%E9%98%9F%E5%88%97.html">消息队列 (4)</a>
<a href="%E6%95%B0%E6%8D%AE%E6%B8%85%E6%B4%97.html">数据清洗 (1)</a>
<a href="%E7%9B%91%E6%8E%A7%E6%8A%A5%E8%AD%A6.html">监控报警 (1)</a>
</p>
</li>
<li class="post">
<a href="%E8%AF%AD%E8%A8%80.html"><strong>语言 (9)</strong></a>
<p class="cat-children-p">
<a href="lua.html">lua (1)</a>
<a href="php.html">php (4)</a>
<a href="golang.html">golang (4)</a>
</p>
</li>
<li class="post">
<a href="%E5%B7%A5%E5%85%B7.html"><strong>工具 (2)</strong></a>
</li>
<li class="post">
<a href="%E8%AE%BE%E8%AE%A1%E6%A8%A1%E5%BC%8F.html"><strong>设计模式 (3)</strong></a>
</li>
<li class="post">
<a href="%E8%AF%BB%E4%B9%A6%E7%AC%94%E8%AE%B0.html"><strong>读书笔记 (1)</strong></a>
</li>
</ul>
</section>
<section>
<h1>Recent Posts</h1>
<ul id="recent_posts">
<li class="post">
<a href="15589244025963.html">大数据架构</a>
</li>
<li class="post">
<a href="15586915631306.html">对lua携程做超时时间</a>
</li>
<li class="post">
<a href="15586915348117.html"></a>
</li>
<li class="post">
<a href="15586818694083.html">nsq简介</a>
</li>
<li class="post">
<a href="15585794233066.html">mac 安装nsq</a>
</li>
</ul>
</section>
</aside> </div></div>
<footer role="contentinfo"><p>
Copyright © 2014 - -
<span class="credit">Powered by <a target="_blank" href="http://www.mweb.im">MWeb</a> Theme by <a href="http://octopress.org">Octopress</a></span>
</p>
</footer>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script><script type="text/x-mathjax-config">MathJax.Hub.Config({TeX: { equationNumbers: { autoNumber: "AMS" } }});</script>
</body>
</html>