-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
437 lines (191 loc) · 11.3 KB
/
index.html
File metadata and controls
437 lines (191 loc) · 11.3 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width,user-scalable=no,initial-scale=1,minimum-scale=1,maximum-scale=1">
<meta http-equiv="Cache-Control" content="no-transform" />
<meta http-equiv="Cache-Control" content="no-siteapp" />
<link rel="alternate" href="/default" title="Just Write.">
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico?v=1.1" />
<link rel="canonical" href="http://yoursite.com/"/>
<meta property="og:type" content="website">
<meta property="og:title" content="Just Write.">
<meta property="og:url" content="http://yoursite.com/index.html">
<meta property="og:site_name" content="Just Write.">
<meta property="og:locale" content="en_US">
<meta property="article:author" content="Pengfeix">
<meta name="twitter:card" content="summary">
<link rel="stylesheet" type="text/css" href="/css/style.css?v=1.1" />
<link href='https://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet'>
<script type="text/javascript">
var themeConfig = {
fancybox: {
enable: false
},
};
</script>
<title> Just Write. - </title>
<meta name="generator" content="Hexo 4.2.1"></head>
<body>
<div id="page">
<header id="masthead"><div class="site-header-inner">
<h1 class="site-title">
<a href="/." class="logo">Just Write.</a>
</h1>
<nav id="nav-top">
<ul id="menu-top" class="nav-top-items">
<li class="menu-item">
<a href="/archives">
Archives
</a>
</li>
<li class="menu-item">
<a href="/about">
About
</a>
</li>
</ul>
</nav>
</div>
</header>
<div id="content">
<div id="primary" class="home">
<article class="post">
<header class="post-header">
<h1 class="post-title">
<a class="post-link" href="/2020/08/14/Kafka%E8%AE%BE%E8%AE%A1%E8%A7%A3%E6%9E%90%E7%AC%AC%E4%B8%80%E8%8A%82/">Kafka设计解析第一节</a>
</h1>
<time class="post-time">
Aug 14 2020
</time>
</header>
<div class="post-excerpt post-content">
<p> 使用消息系统的优势。并介绍了Kafka的架构,Producer消息路由,Consumer Group以及由其实现的不同消息分发方式,Topic & Partition,最后介绍了Kafka Consumer为何使用pull模式以及Kafka提供的三种delivery guarantee。</p>
</div>
</article>
<article class="post">
<header class="post-header">
<h1 class="post-title">
<a class="post-link" href="/2019/12/12/Scrapy%E6%BA%90%E7%A0%81%E5%88%86%E6%9E%90%E4%B9%8BScheduler/">Scrapy源码分析之Scheduler</a>
</h1>
<time class="post-time">
Dec 12 2019
</time>
</header>
<div class="post-excerpt post-content">
<p>我所理解的Scrapy去重模块。<br>直接上源码。</p>
</div>
</article>
<article class="post">
<header class="post-header">
<h1 class="post-title">
<a class="post-link" href="/2019/12/10/RabbitMQ%E5%BF%85%E6%87%82%E7%9A%84%E5%87%A0%E4%B8%AA%E9%97%AE%E9%A2%98/">RabbitMQ必懂的几个问题</a>
</h1>
<time class="post-time">
Dec 10 2019
</time>
</header>
<div class="post-excerpt post-content">
<p>今天的面试题;</p>
<p>如何保证<em>RabbitMQ</em>消息99%的发送成功;<br>看了就能懂!</p>
</div>
</article>
<article class="post">
<header class="post-header">
<h1 class="post-title">
<a class="post-link" href="/2019/11/21/es2/">es2</a>
</h1>
<time class="post-time">
Nov 21 2019
</time>
</header>
<div class="post-excerpt post-content">
<h3 id="记录一次aws-ES2安装的ss的故障"><a href="#记录一次aws-ES2安装的ss的故障" class="headerlink" title="记录一次aws ES2安装的ss的故障"></a>记录一次aws ES2安装的ss的故障</h3>
</div>
</article>
<article class="post">
<header class="post-header">
<h1 class="post-title">
<a class="post-link" href="/2019/11/18/git-checkout-b/">gitcheckoutb</a>
</h1>
<time class="post-time">
Nov 18 2019
</time>
</header>
<div class="post-excerpt post-content">
<h3 id="解决多次提交合并问题"><a href="#解决多次提交合并问题" class="headerlink" title="解决多次提交合并问题"></a>解决多次提交合并问题</h3><p>目的就一个⛰️将这一个功能所有commit都合并为一条有意义的commit信息提交给主版本;</p>
</div>
</article>
<article class="post">
<header class="post-header">
<h1 class="post-title">
<a class="post-link" href="/2019/11/18/SimHash/">SimHash</a>
</h1>
<time class="post-time">
Nov 18 2019
</time>
</header>
<div class="post-excerpt post-content">
<p><a href="http://blog.csdn.net/u010454030/article/details/49102565" target="_blank" rel="noopener">原文</a></p>
<p>两千零七年发表的论文《Detecting Near-Duplicates for Web Crawling》中提到的一种指纹生成算法又或者叫指纹提取算法,被Google广泛应用于亿级的网页去重job,其主要思想就是降维,什么是降维呢!简单来说就是“通过多条信息确定一件事,变成一条信息确定一件事”,Simhash算法就能来做这件事儿!</p>
<p>我们的文章去重也需要这个东西,所以研究了一下,直接展示代码</p>
</div>
</article>
<article class="post">
<header class="post-header">
<h1 class="post-title">
<a class="post-link" href="/2018/06/14/%E6%80%8E%E6%A0%B7%E8%B5%B7%E4%B8%80%E4%B8%AA%E5%B7%A7%E5%A6%99%E7%9A%84%E6%A0%87%E9%A2%98%E5%91%A2/">怎样起一个巧妙的标题呢</a>
</h1>
<time class="post-time">
Jun 14 2018
</time>
</header>
<div class="post-excerpt post-content">
<p>阵列、树和哈希</p>
<p>二维阵列是最简单的数据结构。一个表可以看作是个阵列,</p>
<p>虽然这个方法保存和视觉话数据很棒,但是当你要查找特定的值它就很糟糕。<br>会造成N次运算,虽然还行的,但是还有更快的方法呢</p>
</div>
</article>
<article class="post">
<header class="post-header">
<h1 class="post-title">
<a class="post-link" href="/2017/12/18/%E6%88%91%E5%86%B3%E5%AE%9A%E5%86%99%E8%87%AA%E6%88%91%E6%88%90%E9%95%BF/">我决定写自我成长</a>
</h1>
<time class="post-time">
Dec 18 2017
</time>
</header>
<div class="post-excerpt post-content">
<p>你好,写给未来的自己,现在下定决心把自我学习、工作以及其他等等遇到的问题做总结。希望可以共勉。首先呢,因为啥我要写这博客?这段时间对我打击很大,找工作不顺利自我认识不全面总总原因总之就是以往过的太顺。我对未来“前途一片光明”,知道这些就够了。<strong>加油</strong>⛽️</p>
</div>
</article>
<nav class="pagination">
</nav>
</div>
<div id="secondary">
<section id="tags" class="widget-area widget_tags">
<h3 class="widget-title">Tags</h3>
<ul class="tag-list" itemprop="keywords"><li class="tag-list-item"><a class="tag-list-link" href="/tags/Kafka/" rel="tag">Kafka</a><span class="tag-list-count">1</span></li><li class="tag-list-item"><a class="tag-list-link" href="/tags/RabbitMQ/" rel="tag">RabbitMQ</a><span class="tag-list-count">1</span></li><li class="tag-list-item"><a class="tag-list-link" href="/tags/%E9%AB%98%E5%8F%AF%E7%94%A8/" rel="tag">高可用</a><span class="tag-list-count">1</span></li><li class="tag-list-item"><a class="tag-list-link" href="/tags/Scrapy/" rel="tag">Scrapy</a><span class="tag-list-count">1</span></li><li class="tag-list-item"><a class="tag-list-link" href="/tags/%E6%BA%90%E7%A0%81%E7%AF%87/" rel="tag">源码篇</a><span class="tag-list-count">1</span></li><li class="tag-list-item"><a class="tag-list-link" href="/tags/%E5%8E%BB%E9%87%8D/" rel="tag">去重</a><span class="tag-list-count">2</span></li><li class="tag-list-item"><a class="tag-list-link" href="/tags/%E7%AE%97%E6%B3%95/" rel="tag">算法</a><span class="tag-list-count">1</span></li><li class="tag-list-item"><a class="tag-list-link" href="/tags/elasticsearch/" rel="tag">elasticsearch</a><span class="tag-list-count">1</span></li><li class="tag-list-item"><a class="tag-list-link" href="/tags/%E5%AE%89%E8%A3%85%E6%9C%8D%E5%8A%A1/" rel="tag">安装服务</a><span class="tag-list-count">1</span></li><li class="tag-list-item"><a class="tag-list-link" href="/tags/git/" rel="tag">git</a><span class="tag-list-count">1</span></li></ul>
</section>
</div>
</div>
<footer id="colophon"><span class="copyright-year">
©
2014 -
2020
<span class="footer-author">Pengfeix.</span>
<span class="power-by">
Powered by <a class="hexo-link" href="https://hexo.io/" target="_blank" rel="noopener">Hexo</a> and <a class="theme-link" href="https://github.com/frostfan/hexo-theme-polarbear" target="_blank" rel="noopener">Polar Bear</a>
</span>
</span>
</footer>
<div class="back-to-top" id="back-to-top">
<i class="iconfont icon-up"></i>
</div>
</div>
<script type="text/javascript" src="/lib/jquery/jquery-3.1.1.min.js"></script>
<script type="text/javascript" src="/js/src/theme.js?v=1.1"></script>
<script type="text/javascript" src="/js/src/bootstrap.js?v=1.1"></script>
</body>
</html>