-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathatom.xml
529 lines (233 loc) · 15.4 KB
/
atom.xml
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
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>暴君乔博客</title>
<subtitle>Coding my life, Love</subtitle>
<link href="http://tyrantqiao.com/atom.xml" rel="self"/>
<link href="http://tyrantqiao.com/"/>
<updated>2024-06-24T15:36:44.000Z</updated>
<id>http://tyrantqiao.com/</id>
<author>
<name>tyrantqiao</name>
</author>
<generator uri="https://hexo.io/">Hexo</generator>
<entry>
<title>jvm技术要点</title>
<link href="http://tyrantqiao.com/archives/baa354c8/"/>
<id>http://tyrantqiao.com/archives/baa354c8/</id>
<published>2024-06-24T15:36:44.000Z</published>
<updated>2024-06-24T15:36:44.000Z</updated>
<summary type="html"><h1 id="技术实现"><a href="#技术实现" class="headerlink" title="技术实现"></a>技术实现</h1><p><img</summary>
<category term="java" scheme="http://tyrantqiao.com/tags/java/"/>
<category term="面试" scheme="http://tyrantqiao.com/tags/%E9%9D%A2%E8%AF%95/"/>
<category term="jvm" scheme="http://tyrantqiao.com/tags/jvm/"/>
</entry>
<entry>
<title>Redis技术要点</title>
<link href="http://tyrantqiao.com/archives/ea18a0c8/"/>
<id>http://tyrantqiao.com/archives/ea18a0c8/</id>
<published>2024-05-19T11:50:42.000Z</published>
<updated>2024-05-19T11:50:42.000Z</updated>
<summary type="html"><p>Redis 高效的内存数据库</p>
<ul>
<li>为什么 redis 那么快<ul>
<li>纯内存模型</li>
<li>基于 Reactor 模式设计了时间处理,依赖了单线程事件循环和 IO</summary>
<category term="面试" scheme="http://tyrantqiao.com/tags/%E9%9D%A2%E8%AF%95/"/>
<category term="技术" scheme="http://tyrantqiao.com/tags/%E6%8A%80%E6%9C%AF/"/>
<category term="Redis" scheme="http://tyrantqiao.com/tags/Redis/"/>
</entry>
<entry>
<title>RocketMQ技术要点</title>
<link href="http://tyrantqiao.com/archives/d4017ef/"/>
<id>http://tyrantqiao.com/archives/d4017ef/</id>
<published>2024-05-19T11:49:34.000Z</published>
<updated>2024-05-19T11:49:34.000Z</updated>
<summary type="html"><ul>
<li>为什么要用消息队列<ul>
<li>解耦业务逻辑,领域拆分明细</li>
<li>异步处理,快速响应用户请求</li>
<li>流量削锋</li>
</ul>
</li>
</ul>
<h1 id="核心知识点"><a href="#核心知识点"</summary>
<category term="面试" scheme="http://tyrantqiao.com/tags/%E9%9D%A2%E8%AF%95/"/>
<category term="技术" scheme="http://tyrantqiao.com/tags/%E6%8A%80%E6%9C%AF/"/>
<category term="MQ" scheme="http://tyrantqiao.com/tags/MQ/"/>
</entry>
<entry>
<title>业务中事务一致性怎么处理</title>
<link href="http://tyrantqiao.com/archives/730b1c7f/"/>
<id>http://tyrantqiao.com/archives/730b1c7f/</id>
<published>2023-06-18T14:59:53.000Z</published>
<updated>2023-07-09T14:29:27.000Z</updated>
<summary type="html"><h1 id="事务"><a href="#事务" class="headerlink"</summary>
<category term="面经" scheme="http://tyrantqiao.com/tags/%E9%9D%A2%E7%BB%8F/"/>
<category term="事务" scheme="http://tyrantqiao.com/tags/%E4%BA%8B%E5%8A%A1/"/>
</entry>
<entry>
<title>Mysql基础看这篇就够了</title>
<link href="http://tyrantqiao.com/archives/9cebe623/"/>
<id>http://tyrantqiao.com/archives/9cebe623/</id>
<published>2023-06-18T09:35:08.000Z</published>
<updated>2023-07-09T14:29:27.000Z</updated>
<summary type="html"><h1 id="Mysql基础"><a href="#Mysql基础" class="headerlink"</summary>
<category term="面经" scheme="http://tyrantqiao.com/tags/%E9%9D%A2%E7%BB%8F/"/>
<category term="sql" scheme="http://tyrantqiao.com/tags/sql/"/>
<category term="Mysql" scheme="http://tyrantqiao.com/tags/Mysql/"/>
</entry>
<entry>
<title>业务架构的思考理解</title>
<link href="http://tyrantqiao.com/archives/ab30f775/"/>
<id>http://tyrantqiao.com/archives/ab30f775/</id>
<published>2023-06-06T15:23:52.000Z</published>
<updated>2023-07-09T14:18:17.000Z</updated>
<summary type="html"><h1 id="业务架构思考"><a href="#业务架构思考" class="headerlink"</summary>
<category term="架构" scheme="http://tyrantqiao.com/tags/%E6%9E%B6%E6%9E%84/"/>
<category term="Java" scheme="http://tyrantqiao.com/tags/Java/"/>
</entry>
<entry>
<title>chatgpt使用经验</title>
<link href="http://tyrantqiao.com/archives/ba50eb49/"/>
<id>http://tyrantqiao.com/archives/ba50eb49/</id>
<published>2023-05-04T15:39:25.000Z</published>
<updated>2023-07-09T14:18:17.000Z</updated>
<summary type="html"><h1 id="chatgpt-网站"><a href="#chatgpt-网站" class="headerlink" title="chatgpt 网站"></a>chatgpt 网站</h1><div style="text-align: center">
<div</summary>
<category term="chatgpt" scheme="http://tyrantqiao.com/tags/chatgpt/"/>
<category term="经验分享" scheme="http://tyrantqiao.com/tags/%E7%BB%8F%E9%AA%8C%E5%88%86%E4%BA%AB/"/>
</entry>
<entry>
<title>2023规划</title>
<link href="http://tyrantqiao.com/archives/e787180b/"/>
<id>http://tyrantqiao.com/archives/e787180b/</id>
<published>2023-05-04T15:30:01.000Z</published>
<updated>2023-07-09T14:29:27.000Z</updated>
<summary type="html"><p>🆕update</p>
<p>以5-27为分界线,准备三个月到8-27</p>
<p>最重要的事情:<br>⭐⭐⭐ 职业发展上确定下来新的方向,开始努力准备<br>⭐⭐ 认真学习兴趣上面的事情,健身学习<br>⭐⭐⭐</summary>
<category term="规划" scheme="http://tyrantqiao.com/tags/%E8%A7%84%E5%88%92/"/>
</entry>
<entry>
<title>JDK8特性学习附案例</title>
<link href="http://tyrantqiao.com/archives/b97b30cf/"/>
<id>http://tyrantqiao.com/archives/b97b30cf/</id>
<published>2022-02-13T07:12:48.000Z</published>
<updated>2023-07-09T14:18:17.000Z</updated>
<summary type="html"><h1 id="JDK8"><a href="#JDK8" class="headerlink" title="JDK8"></a>JDK8</h1><h2 id="Lambda"><a href="#Lambda" class="headerlink"</summary>
<category term="Java" scheme="http://tyrantqiao.com/tags/Java/"/>
<category term="jdk" scheme="http://tyrantqiao.com/tags/jdk/"/>
</entry>
<entry>
<title>程序员思考之道</title>
<link href="http://tyrantqiao.com/archives/aa08646d/"/>
<id>http://tyrantqiao.com/archives/aa08646d/</id>
<published>2022-01-23T05:41:33.000Z</published>
<updated>2023-07-09T14:29:27.000Z</updated>
<summary type="html"><h1 id="程序员"><a href="#程序员" class="headerlink" title="程序员"></a>程序员</h1><blockquote>
<p>这篇文章主要是总结 Java 方面的,自己学习的一些见解地方</p>
</blockquote>
<h2</summary>
<category term="编程" scheme="http://tyrantqiao.com/tags/%E7%BC%96%E7%A8%8B/"/>
</entry>
<entry>
<title>扫码登录的实现逻辑</title>
<link href="http://tyrantqiao.com/archives/c1ac98b7/"/>
<id>http://tyrantqiao.com/archives/c1ac98b7/</id>
<published>2021-09-27T10:49:24.000Z</published>
<updated>2023-07-09T14:18:17.000Z</updated>
<summary type="html"><h1 id="扫码登录"><a href="#扫码登录" class="headerlink" title="扫码登录"></a>扫码登录</h1><blockquote>
<p>常见的像桌面版 PC 微信,要求手机扫码登录,点击确认后,PC</summary>
<category term="架构" scheme="http://tyrantqiao.com/tags/%E6%9E%B6%E6%9E%84/"/>
</entry>
<entry>
<title>OOP面向对象的思想</title>
<link href="http://tyrantqiao.com/archives/undefined/"/>
<id>http://tyrantqiao.com/archives/undefined/</id>
<published>2021-09-16T15:46:46.000Z</published>
<updated>2024-06-30T07:20:40.364Z</updated>
<summary type="html"><h1 id="OOP"><a href="#OOP" class="headerlink" title="OOP"></a>OOP</h1><h2 id="继承与组合"><a href="#继承与组合" class="headerlink"</summary>
<category term="JAVA" scheme="http://tyrantqiao.com/tags/JAVA/"/>
</entry>
<entry>
<title>Spring源码系列一始而终</title>
<link href="http://tyrantqiao.com/archives/e208775b/"/>
<id>http://tyrantqiao.com/archives/e208775b/</id>
<published>2021-08-23T22:57:15.000Z</published>
<updated>2023-07-09T14:29:27.000Z</updated>
<summary type="html"><h1 id="Spring"><a href="#Spring" class="headerlink" title="Spring"></a>Spring</h1><h2 id="Conditional"><a href="#Conditional"</summary>
<category term="源码" scheme="http://tyrantqiao.com/tags/%E6%BA%90%E7%A0%81/"/>
<category term="Spring" scheme="http://tyrantqiao.com/tags/Spring/"/>
</entry>
<entry>
<title>如何将SpringBoot打成可执行or可依赖jar包</title>
<link href="http://tyrantqiao.com/archives/632b580c/"/>
<id>http://tyrantqiao.com/archives/632b580c/</id>
<published>2021-08-23T22:35:37.000Z</published>
<updated>2023-07-09T14:18:17.000Z</updated>
<summary type="html"><h1 id="SpringBoot"><a href="#SpringBoot" class="headerlink" title="SpringBoot"></a>SpringBoot</h1><h2 id="JAR包格式的不同"><a href="#JAR包格式的不同"</summary>
</entry>
<entry>
<title>面经实战到啥都会</title>
<link href="http://tyrantqiao.com/archives/22a82e78/"/>
<id>http://tyrantqiao.com/archives/22a82e78/</id>
<published>2021-08-14T09:19:29.000Z</published>
<updated>2023-07-09T14:29:27.000Z</updated>
<summary type="html">Here's something encrypted, password is required to continue reading.</summary>
<category term="面经" scheme="http://tyrantqiao.com/tags/%E9%9D%A2%E7%BB%8F/"/>
</entry>
<entry>
<title>TIDB 从学习到看论文头疼</title>
<link href="http://tyrantqiao.com/archives/ccd61f80/"/>
<id>http://tyrantqiao.com/archives/ccd61f80/</id>
<published>2021-08-12T14:26:31.000Z</published>
<updated>2023-07-09T14:29:27.000Z</updated>
<summary type="html"><h1 id="TiDB"><a href="#TiDB" class="headerlink" title="TiDB"></a>TiDB</h1><blockquote>
<p>New-sql 型的数据库</p>
</blockquote>
<h2 id="架构"><a</summary>
<category term="数据库" scheme="http://tyrantqiao.com/tags/%E6%95%B0%E6%8D%AE%E5%BA%93/"/>
<category term="TIDB" scheme="http://tyrantqiao.com/tags/TIDB/"/>
</entry>
<entry>
<title>Hadoop架构原理知识</title>
<link href="http://tyrantqiao.com/archives/13c90d26/"/>
<id>http://tyrantqiao.com/archives/13c90d26/</id>
<published>2021-08-10T21:47:14.000Z</published>
<updated>2023-07-09T14:29:27.000Z</updated>
<summary type="html"><h1 id="Hadoop"><a href="#Hadoop" class="headerlink" title="Hadoop"></a>Hadoop</h1><blockquote>
<p>Apache Hadoop 是一款支援數據密集型分布式應用程式並以 Apache</summary>
<category term="架构" scheme="http://tyrantqiao.com/tags/%E6%9E%B6%E6%9E%84/"/>
<category term="Hadoop" scheme="http://tyrantqiao.com/tags/Hadoop/"/>
</entry>
<entry>
<title>动态规划从套路开始</title>
<link href="http://tyrantqiao.com/archives/f53aa71b/"/>
<id>http://tyrantqiao.com/archives/f53aa71b/</id>
<published>2021-07-25T12:39:58.000Z</published>
<updated>2023-07-09T14:29:27.000Z</updated>
<summary type="html"><h1 id="动态规划"><a href="#动态规划" class="headerlink" title="动态规划"></a>动态规划</h1><blockquote>
<p>动态规划题目一般都是求最 xxx,最大的,最长的</summary>
<category term="算法" scheme="http://tyrantqiao.com/tags/%E7%AE%97%E6%B3%95/"/>
</entry>
<entry>
<title>springCloud从0到丧心病狂</title>
<link href="http://tyrantqiao.com/archives/21d7d33f/"/>
<id>http://tyrantqiao.com/archives/21d7d33f/</id>
<published>2021-07-18T23:07:29.000Z</published>
<updated>2023-07-09T14:18:17.000Z</updated>
<summary type="html"><h1 id="Spring-Cloud"><a href="#Spring-Cloud" class="headerlink" title="Spring Cloud"></a>Spring</summary>
<category term="Java" scheme="http://tyrantqiao.com/tags/Java/"/>
<category term="springCloud" scheme="http://tyrantqiao.com/tags/springCloud/"/>
</entry>
<entry>
<title>缓存从0到放弃____吗</title>
<link href="http://tyrantqiao.com/archives/20dbf190/"/>
<id>http://tyrantqiao.com/archives/20dbf190/</id>
<published>2021-07-13T14:07:09.000Z</published>
<updated>2023-07-09T14:18:17.000Z</updated>
<summary type="html"><h1 id="缓存"><a href="#缓存" class="headerlink" title="缓存"></a>缓存</h1><h2 id="缓存常见架构"><a href="#缓存常见架构" class="headerlink"</summary>
<category term="redis" scheme="http://tyrantqiao.com/tags/redis/"/>
<category term="缓存" scheme="http://tyrantqiao.com/tags/%E7%BC%93%E5%AD%98/"/>
</entry>
</feed>