@wcj/github-rank 22.3.18 → 22.3.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (38) hide show
  1. package/dist/repos.json +37059 -36963
  2. package/dist/sifou-daily.json +60 -105
  3. package/dist/sifou-monthly.json +103 -103
  4. package/dist/sifou-weekly.json +156 -156
  5. package/dist/toutiao-30.json +91 -91
  6. package/dist/toutiao-7.json +108 -108
  7. package/dist/toutiao-90.json +37 -37
  8. package/dist/trending-daily.json +171 -171
  9. package/dist/trending-monthly.json +160 -160
  10. package/dist/trending-weekly.json +154 -154
  11. package/dist/users.china.json +2441 -2441
  12. package/dist/users.json +3264 -3265
  13. package/package.json +1 -1
  14. package/web/36kr.html +35 -13
  15. package/web/data/repos.json +37059 -36963
  16. package/web/data/sifou-daily.json +60 -105
  17. package/web/data/sifou-monthly.json +103 -103
  18. package/web/data/sifou-weekly.json +156 -156
  19. package/web/data/toutiao-30.json +91 -91
  20. package/web/data/toutiao-7.json +108 -108
  21. package/web/data/toutiao-90.json +37 -37
  22. package/web/data/trending-daily.json +171 -171
  23. package/web/data/trending-monthly.json +160 -160
  24. package/web/data/trending-weekly.json +154 -154
  25. package/web/data/users.china.json +2441 -2441
  26. package/web/data/users.json +3264 -3265
  27. package/web/index.html +1703 -1681
  28. package/web/repos.html +4112 -4094
  29. package/web/sifou-daily.html +85 -203
  30. package/web/sifou-monthly.html +160 -138
  31. package/web/sifou-weekly.html +174 -152
  32. package/web/toutiao-30.html +130 -108
  33. package/web/toutiao-7.html +105 -83
  34. package/web/toutiao-90.html +85 -63
  35. package/web/trending-monthly.html +181 -155
  36. package/web/trending-weekly.html +176 -146
  37. package/web/trending.html +185 -163
  38. package/web/users.china.html +1318 -1296
@@ -7,41 +7,63 @@
7
7
  <link rel="icon" type="image/x-icon" href="https://github.githubassets.com/favicon.ico">
8
8
  <title> 开发者头条 - 最近30天热门分享 </title>
9
9
  <meta name="description" content="开发者头条 - 最近30天热门分享">
10
+ <style>
11
+ [data-color-mode*='dark'] {
12
+ --color-fg-default: #c9d1d9;
13
+ --color-fg-muted: #8b949e;
14
+ --color-fg-subtle: #484f58;
15
+ --color-accent-fg: #58a6ff;
16
+ --color-accent-emphasis: #1f6feb;
17
+ --color-link-hover: #58a6ff;
18
+ --color-tab-fg: #494949;
19
+ --color-border: #e2e2e2;
20
+ --color-neutral-muted: rgba(110,118,129,0.4);
21
+ }
22
+ [data-color-mode*='light'] {
23
+ --color-fg-default: #24292f;
24
+ --color-fg-muted: #57606a;
25
+ --color-fg-subtle: #6e7781;
26
+ --color-accent-fg: #0969da;
27
+ --color-accent-emphasis: #0969da;
28
+ --color-link-hover: #58a6ff;
29
+ --color-tab-fg: #e2e2e2;
30
+ --color-border: #000;
31
+ --color-neutral-muted: rgba(175,184,193,0.2);
32
+ }
33
+ </style>
10
34
  <style>
11
35
  * { box-sizing: border-box; }
12
36
  html, body, ul, li, h1 { margin: 0; padding: 0 }
13
37
  html, body { font-size: 16px; font-family: -apple-system,"Helvetica Neue",Helvetica,Arial,"PingFang SC","Hiragino Sans GB","WenQuanYi Micro Hei","Microsoft Yahei",sans-serif; }
14
38
  ul { list-style: none; }
15
39
 
16
- a { color: #333; text-decoration: none; transition: all .2s ease-in; }
17
- a:hover { color: #1600ff; }
40
+ a { color: var(--color-accent-fg); text-decoration: none; transition: all .2s ease-in; }
41
+ a:hover { color: var(--color-link-hover); text-decoration: underline; }
18
42
  a.github-corner:hover .octo-arm { animation: octocat-wave 560ms infinite linear; }
19
43
  a.github-corner svg { fill: #f1f1f1; color: #000; position: absolute; top: 0; border: 0; right: 0; z-index: 99; width: 70px; height: 70px; }
20
44
  a.github-corner { position: fixed; z-index: 9999; top: 0; right: 0; }
21
45
 
22
46
  .title { padding: 32px 20px 10px 20px; font-size: 32px; display: flex; }
23
47
  .title a svg { display: block; }
24
- .title a { color: #0059ff; display: inline-block; margin-left: 10px; }
48
+ .title a { color: var(--color-accent-fg); display: inline-block; margin-left: 10px; }
25
49
  .time, .footer { padding: 5px 20px 2px 20px; font-size: 12px; color: #adadad; }
26
50
  .tabs { padding: 0 20px 5px 20px;}
27
- .tabs a { background: #e2e2e2; display: inline-block; border-radius: 2px; margin: 2px 0; padding: 2px 5px; font-size: 12px; line-height: 16px; color: #0366d6; }
51
+ .tabs a { background: var(--color-tab-fg); display: inline-block; border-radius: 2px; margin: 2px 0; padding: 2px 5px; font-size: 12px; line-height: 16px; color: var(--color-accent-fg); }
28
52
  .tabs a.active { background: #333; color: #efefef; }
29
53
  .tabs a:hover:not(.active) { background: #efefef; }
30
54
  .footer { padding: 0 20px 30px 20px; font-size: 12px; color: #adadad; }
31
55
  .footer .time { padding: 0; }
32
56
  .list { text-align: left; padding-bottom: 10px; margin: 0 15px; }
33
57
  .list img { width: 36px; height: 36px; border-radius: 3px; display: block; margin: 0 auto; background-color: #e2e2e2; border: 0; overflow: hidden; }
34
- .list a { color: #0366d6; }
35
- .list a:hover { color: #1600ff; }
36
58
  .list li { padding: 10px; transition: all .3s; }
37
59
  .list li.rank-title { margin: 0; padding: 3px 0 0 7px; margin-bottom: 10px; border-radius: 5px; font-size: 12px; line-height: 16px; }
38
60
  .list li.rank-title > a { margin-right: 10px; }
39
61
  .list li.rank-title:hover { background: transparent; }
40
62
  .list li:last-child, .list li.rank-title { border-bottom: 0; }
41
- .list li:hover { background: #efefef8f; }
63
+ .list li:hover { background: var(--color-neutral-muted); }
42
64
  .list li > div { display: table-cell; vertical-align: top; font-size: 14px; }
43
65
  .list li div.rank span { font-weight: bold; }
44
- .list li div.details { padding: 2px 0 0 0; font-size: 12px; float: left; color: #b9b9b9; }
66
+ .list li div.details { padding: 2px 0 0 0; font-size: 12px; float: left; color: var(--color-fg-muted); }
45
67
  .list li div.details a { color: #b9b9b9; transition: all .3s; }
46
68
  .list li div.details a:hover { color: #1600ff; }
47
69
  .list li div.details a:hover svg { fill: #1600ff; }
@@ -51,16 +73,16 @@
51
73
  .list li > div.info { width: 100%; }
52
74
  .list li > div.info i { color: #717171; }
53
75
  .list li > div.info a:hover i { color: #333; }
54
- .list li div.sub-title { color: #333; margin: 4px 0 0 0; }
76
+ .list li div.sub-title { color: var(--color-theme-text); margin: 4px 0 0 0; }
55
77
  .list li div.avatar { padding-right: 10px; }
56
78
 
57
79
 
58
80
  .list .select { }
59
- .list .select .active { color: #333; font-weight: bold; border-bottom: 1px dotted #000;}
81
+ .list .select .active { color: var(--color-theme-text); font-weight: bold; border-bottom: 1px dotted var(--color-border);}
60
82
 
61
83
 
62
- .list li div.followers { font-size: 12px; color: #7d7d7d; white-space:nowrap; padding-top: 2px; border-radius: 3px; }
63
- .list li div.followers a { color: #545454; }
84
+ .list li div.followers { font-size: 12px; color: var(--color-fg-muted); white-space:nowrap; padding-top: 2px; border-radius: 3px; }
85
+ .list li div.followers a { color: var(--color-fg-muted); }
64
86
  .list li div.followers * { vertical-align: middle; }
65
87
  .list li div.followers svg { vertical-align: text-top; display: inline-block; fill: #9E9E9E; width: 14px; height: 14px; }
66
88
 
@@ -75,8 +97,7 @@
75
97
  .title { padding-top: 16px; font-size: 21px; }
76
98
  }
77
99
  </style>
78
- <style>
79
- </style>
100
+ <script src="https://unpkg.com/@wcj/dark-mode"></script>
80
101
  </head>
81
102
  <body>
82
103
  <a href="https://github.com/jaywcjlove/github-rank" target="_blank" class="github-corner">
@@ -87,6 +108,7 @@
87
108
  </svg>
88
109
  </a>
89
110
  <h1 class="title">
111
+ <dark-mode permanent></dark-mode>
90
112
  开发者头条 - 最近30天热门分享
91
113
 
92
114
 
@@ -99,7 +121,7 @@
99
121
 
100
122
 
101
123
  </h1>
102
- <div class="time">Last cache created on 2022/3/18 by
124
+ <div class="time">Last cache created on 2022/3/21 by
103
125
 
104
126
 
105
127
 
@@ -148,7 +170,7 @@
148
170
  <path d="M0 0h16v16H0z"/>
149
171
  <path fill="#9E9E9E" d="M4.234 6.693v7.243H2.881c-.486 0-.881-.492-.881-1.095V7.875c0-.63.412-1.182.88-1.182h1.354zm3.688-3.7C8.01 2.404 8.49 1.99 9.018 2c.754.015 1.204.663 1.36.983.284.585.292 1.549.097 2.167-.177.56-.586 1.296-.586 1.296h3.066c.324 0 .625.164.826.449.204.29.27.668.178 1.011l-1.387 5.183c-.126.499-.544.847-1.016.847H5.53V6.693c1.385-.309 2.236-2.632 2.392-3.7z"/>
150
172
  </g>
151
- </svg><span>138</span>
173
+ </svg><span>140</span>
152
174
  </div>
153
175
  </li>
154
176
 
@@ -200,20 +222,20 @@
200
222
  <path d="M0 0h16v16H0z"/>
201
223
  <path fill="#9E9E9E" d="M4.234 6.693v7.243H2.881c-.486 0-.881-.492-.881-1.095V7.875c0-.63.412-1.182.88-1.182h1.354zm3.688-3.7C8.01 2.404 8.49 1.99 9.018 2c.754.015 1.204.663 1.36.983.284.585.292 1.549.097 2.167-.177.56-.586 1.296-.586 1.296h3.066c.324 0 .625.164.826.449.204.29.27.668.178 1.011l-1.387 5.183c-.126.499-.544.847-1.016.847H5.53V6.693c1.385-.309 2.236-2.632 2.392-3.7z"/>
202
224
  </g>
203
- </svg><span>119</span>
225
+ </svg><span>121</span>
204
226
  </div>
205
227
  </li>
206
228
 
207
229
  <li>
208
230
  <div class="avatar">
209
- <a href="https://toutiao.io/subjects/141186" target="_blank">
210
- <img src="https://img.toutiao.io/subject/573a89c273cc42d2a87e753fee03e1a5/thumb" loading="lazy" title="技术干货分享 - 独家号" alt="技术干货分享 - 独家号" />
231
+ <a href="https://toutiao.io/subjects/26578" target="_blank">
232
+ <img src="https://img.toutiao.io/subject/8e12ef64799649acbfd936883ef16c3c/thumb" loading="lazy" title="服务架构及中台 - 独家号" alt="服务架构及中台 - 独家号" />
211
233
  </a>
212
234
  </div>
213
235
  <div class="info">
214
236
  <div class="rank">
215
237
  <span title="Ranking 4">4</span>
216
- <a href="https://toutiao.io/k/qjooigy" target="_blank" title="MySQL 团队开发规范">MySQL 团队开发规范</a>
238
+ <a href="https://toutiao.io/k/02whm5c" target="_blank" title="2万字 + 50 张图,细说 JVM 内存分布、内存对齐、压缩指针!">2万字 + 50 张图,细说 JVM 内存分布、内存对齐、压缩指针!</a>
217
239
  </div>
218
240
 
219
241
  <div class="details">
@@ -226,20 +248,20 @@
226
248
  <path d="M0 0h16v16H0z"/>
227
249
  <path fill="#9E9E9E" d="M4.234 6.693v7.243H2.881c-.486 0-.881-.492-.881-1.095V7.875c0-.63.412-1.182.88-1.182h1.354zm3.688-3.7C8.01 2.404 8.49 1.99 9.018 2c.754.015 1.204.663 1.36.983.284.585.292 1.549.097 2.167-.177.56-.586 1.296-.586 1.296h3.066c.324 0 .625.164.826.449.204.29.27.668.178 1.011l-1.387 5.183c-.126.499-.544.847-1.016.847H5.53V6.693c1.385-.309 2.236-2.632 2.392-3.7z"/>
228
250
  </g>
229
- </svg><span>106</span>
251
+ </svg><span>105</span>
230
252
  </div>
231
253
  </li>
232
254
 
233
255
  <li>
234
256
  <div class="avatar">
235
- <a href="https://toutiao.io/subjects/1385" target="_blank">
236
- <img src="https://img.toutiao.io/subject/3f69ffc3bdf6496e86439348166e3ed7/thumb" loading="lazy" title="GoHackers - 独家号" alt="GoHackers - 独家号" />
257
+ <a href="https://toutiao.io/subjects/141186" target="_blank">
258
+ <img src="https://img.toutiao.io/subject/573a89c273cc42d2a87e753fee03e1a5/thumb" loading="lazy" title="技术干货分享 - 独家号" alt="技术干货分享 - 独家号" />
237
259
  </a>
238
260
  </div>
239
261
  <div class="info">
240
262
  <div class="rank">
241
263
  <span title="Ranking 5">5</span>
242
- <a href="https://toutiao.io/k/xk3qbvm" target="_blank" title="微服务从代码到k8s部署应有尽有大结局(k8s部署)">微服务从代码到k8s部署应有尽有大结局(k8s部署)</a>
264
+ <a href="https://toutiao.io/k/qjooigy" target="_blank" title="MySQL 团队开发规范">MySQL 团队开发规范</a>
243
265
  </div>
244
266
 
245
267
  <div class="details">
@@ -252,24 +274,24 @@
252
274
  <path d="M0 0h16v16H0z"/>
253
275
  <path fill="#9E9E9E" d="M4.234 6.693v7.243H2.881c-.486 0-.881-.492-.881-1.095V7.875c0-.63.412-1.182.88-1.182h1.354zm3.688-3.7C8.01 2.404 8.49 1.99 9.018 2c.754.015 1.204.663 1.36.983.284.585.292 1.549.097 2.167-.177.56-.586 1.296-.586 1.296h3.066c.324 0 .625.164.826.449.204.29.27.668.178 1.011l-1.387 5.183c-.126.499-.544.847-1.016.847H5.53V6.693c1.385-.309 2.236-2.632 2.392-3.7z"/>
254
276
  </g>
255
- </svg><span>95</span>
277
+ </svg><span>110</span>
256
278
  </div>
257
279
  </li>
258
280
 
259
281
  <li>
260
282
  <div class="avatar">
261
- <a href="https://toutiao.io/subjects/465623" target="_blank">
262
- <img src="https://img.toutiao.io/subject/388a8f21de6247edb0dced13b1701e0c/thumb" loading="lazy" title="趣编程的独家号 - 独家号" alt="趣编程的独家号 - 独家号" />
283
+ <a href="https://toutiao.io/subjects/1385" target="_blank">
284
+ <img src="https://img.toutiao.io/subject/3f69ffc3bdf6496e86439348166e3ed7/thumb" loading="lazy" title="GoHackers - 独家号" alt="GoHackers - 独家号" />
263
285
  </a>
264
286
  </div>
265
287
  <div class="info">
266
288
  <div class="rank">
267
289
  <span title="Ranking 6">6</span>
268
- <a href="https://toutiao.io/k/vjw1dlc" target="_blank" title="Golang 简洁架构实战">Golang 简洁架构实战</a>
290
+ <a href="https://toutiao.io/k/xk3qbvm" target="_blank" title="微服务从代码到k8s部署应有尽有大结局(k8s部署)">微服务从代码到k8s部署应有尽有大结局(k8s部署)</a>
269
291
  </div>
270
292
 
271
293
  <div class="details">
272
- 作者:bearluo,腾讯 IEG 运营开发工程师文中项目代码位置:https://github.com/devYun/go-clean-architecture由于 golang...
294
+
273
295
  </div>
274
296
  </div>
275
297
  <div class="followers" title="followers">
@@ -278,24 +300,24 @@
278
300
  <path d="M0 0h16v16H0z"/>
279
301
  <path fill="#9E9E9E" d="M4.234 6.693v7.243H2.881c-.486 0-.881-.492-.881-1.095V7.875c0-.63.412-1.182.88-1.182h1.354zm3.688-3.7C8.01 2.404 8.49 1.99 9.018 2c.754.015 1.204.663 1.36.983.284.585.292 1.549.097 2.167-.177.56-.586 1.296-.586 1.296h3.066c.324 0 .625.164.826.449.204.29.27.668.178 1.011l-1.387 5.183c-.126.499-.544.847-1.016.847H5.53V6.693c1.385-.309 2.236-2.632 2.392-3.7z"/>
280
302
  </g>
281
- </svg><span>102</span>
303
+ </svg><span>97</span>
282
304
  </div>
283
305
  </li>
284
306
 
285
307
  <li>
286
308
  <div class="avatar">
287
- <a href="https://toutiao.io/subjects/24912" target="_blank">
288
- <img src="https://img.toutiao.io/subject/0bd01d30f85345feb85424b2928d99b2/thumb" loading="lazy" title="进击的程序猿 - 独家号" alt="进击的程序猿 - 独家号" />
309
+ <a href="https://toutiao.io/subjects/465623" target="_blank">
310
+ <img src="https://img.toutiao.io/subject/388a8f21de6247edb0dced13b1701e0c/thumb" loading="lazy" title="趣编程的独家号 - 独家号" alt="趣编程的独家号 - 独家号" />
289
311
  </a>
290
312
  </div>
291
313
  <div class="info">
292
314
  <div class="rank">
293
315
  <span title="Ranking 7">7</span>
294
- <a href="https://toutiao.io/k/j9872pc" target="_blank" title="【超赞】技术架构的战略和战术原则">【超赞】技术架构的战略和战术原则</a>
316
+ <a href="https://toutiao.io/k/vjw1dlc" target="_blank" title="Golang 简洁架构实战">Golang 简洁架构实战</a>
295
317
  </div>
296
318
 
297
319
  <div class="details">
298
-
320
+ 作者:bearluo,腾讯 IEG 运营开发工程师文中项目代码位置:https://github.com/devYun/go-clean-architecture由于 golang...
299
321
  </div>
300
322
  </div>
301
323
  <div class="followers" title="followers">
@@ -304,20 +326,20 @@
304
326
  <path d="M0 0h16v16H0z"/>
305
327
  <path fill="#9E9E9E" d="M4.234 6.693v7.243H2.881c-.486 0-.881-.492-.881-1.095V7.875c0-.63.412-1.182.88-1.182h1.354zm3.688-3.7C8.01 2.404 8.49 1.99 9.018 2c.754.015 1.204.663 1.36.983.284.585.292 1.549.097 2.167-.177.56-.586 1.296-.586 1.296h3.066c.324 0 .625.164.826.449.204.29.27.668.178 1.011l-1.387 5.183c-.126.499-.544.847-1.016.847H5.53V6.693c1.385-.309 2.236-2.632 2.392-3.7z"/>
306
328
  </g>
307
- </svg><span>94</span>
329
+ </svg><span>102</span>
308
330
  </div>
309
331
  </li>
310
332
 
311
333
  <li>
312
334
  <div class="avatar">
313
- <a href="https://toutiao.io/subjects/26578" target="_blank">
314
- <img src="https://img.toutiao.io/subject/8e12ef64799649acbfd936883ef16c3c/thumb" loading="lazy" title="服务架构及中台 - 独家号" alt="服务架构及中台 - 独家号" />
335
+ <a href="https://toutiao.io/subjects/24912" target="_blank">
336
+ <img src="https://img.toutiao.io/subject/0bd01d30f85345feb85424b2928d99b2/thumb" loading="lazy" title="进击的程序猿 - 独家号" alt="进击的程序猿 - 独家号" />
315
337
  </a>
316
338
  </div>
317
339
  <div class="info">
318
340
  <div class="rank">
319
341
  <span title="Ranking 8">8</span>
320
- <a href="https://toutiao.io/k/02whm5c" target="_blank" title="2万字 + 50 张图,细说 JVM 内存分布、内存对齐、压缩指针!">2万字 + 50 张图,细说 JVM 内存分布、内存对齐、压缩指针!</a>
342
+ <a href="https://toutiao.io/k/j9872pc" target="_blank" title="【超赞】技术架构的战略和战术原则">【超赞】技术架构的战略和战术原则</a>
321
343
  </div>
322
344
 
323
345
  <div class="details">
@@ -330,20 +352,20 @@
330
352
  <path d="M0 0h16v16H0z"/>
331
353
  <path fill="#9E9E9E" d="M4.234 6.693v7.243H2.881c-.486 0-.881-.492-.881-1.095V7.875c0-.63.412-1.182.88-1.182h1.354zm3.688-3.7C8.01 2.404 8.49 1.99 9.018 2c.754.015 1.204.663 1.36.983.284.585.292 1.549.097 2.167-.177.56-.586 1.296-.586 1.296h3.066c.324 0 .625.164.826.449.204.29.27.668.178 1.011l-1.387 5.183c-.126.499-.544.847-1.016.847H5.53V6.693c1.385-.309 2.236-2.632 2.392-3.7z"/>
332
354
  </g>
333
- </svg><span>77</span>
355
+ </svg><span>94</span>
334
356
  </div>
335
357
  </li>
336
358
 
337
359
  <li>
338
360
  <div class="avatar">
339
- <a href="https://toutiao.io/subjects/132121" target="_blank">
340
- <img src="https://img.toutiao.io/subject/bce4db7347f44c87a8f5eef28513f93f/thumb" loading="lazy" title="yaya的鸡汤 - 独家号" alt="yaya的鸡汤 - 独家号" />
361
+ <a href="https://toutiao.io/subjects/405015" target="_blank">
362
+ <img src="https://img.toutiao.io/subject/0bc4a65bf09748718c9acc6991f50e49/thumb" loading="lazy" title="方丈的寺院 - 独家号" alt="方丈的寺院 - 独家号" />
341
363
  </a>
342
364
  </div>
343
365
  <div class="info">
344
366
  <div class="rank">
345
367
  <span title="Ranking 9">9</span>
346
- <a href="https://toutiao.io/k/fb7mdkl" target="_blank" title="ClickHouse使用实践与规范">ClickHouse使用实践与规范</a>
368
+ <a href="https://toutiao.io/k/f4vabj7" target="_blank" title="微服务如何划分">微服务如何划分</a>
347
369
  </div>
348
370
 
349
371
  <div class="details">
@@ -356,20 +378,20 @@
356
378
  <path d="M0 0h16v16H0z"/>
357
379
  <path fill="#9E9E9E" d="M4.234 6.693v7.243H2.881c-.486 0-.881-.492-.881-1.095V7.875c0-.63.412-1.182.88-1.182h1.354zm3.688-3.7C8.01 2.404 8.49 1.99 9.018 2c.754.015 1.204.663 1.36.983.284.585.292 1.549.097 2.167-.177.56-.586 1.296-.586 1.296h3.066c.324 0 .625.164.826.449.204.29.27.668.178 1.011l-1.387 5.183c-.126.499-.544.847-1.016.847H5.53V6.693c1.385-.309 2.236-2.632 2.392-3.7z"/>
358
380
  </g>
359
- </svg><span>81</span>
381
+ </svg><span>83</span>
360
382
  </div>
361
383
  </li>
362
384
 
363
385
  <li>
364
386
  <div class="avatar">
365
- <a href="https://toutiao.io/subjects/26578" target="_blank">
366
- <img src="https://img.toutiao.io/subject/8e12ef64799649acbfd936883ef16c3c/thumb" loading="lazy" title="服务架构及中台 - 独家号" alt="服务架构及中台 - 独家号" />
387
+ <a href="https://toutiao.io/subjects/24912" target="_blank">
388
+ <img src="https://img.toutiao.io/subject/0bd01d30f85345feb85424b2928d99b2/thumb" loading="lazy" title="进击的程序猿 - 独家号" alt="进击的程序猿 - 独家号" />
367
389
  </a>
368
390
  </div>
369
391
  <div class="info">
370
392
  <div class="rank">
371
393
  <span title="Ranking 10">10</span>
372
- <a href="https://toutiao.io/k/upx1qip" target="_blank" title="一张图看懂微服务架构路线">一张图看懂微服务架构路线</a>
394
+ <a href="https://toutiao.io/k/vcpzf1w" target="_blank" title="2万字,详解数据湖,概念、特征、架构、方案、场景以及建湖全过程(建议收藏)">2万字,详解数据湖,概念、特征、架构、方案、场景以及建湖全过程(建议收藏)</a>
373
395
  </div>
374
396
 
375
397
  <div class="details">
@@ -382,20 +404,20 @@
382
404
  <path d="M0 0h16v16H0z"/>
383
405
  <path fill="#9E9E9E" d="M4.234 6.693v7.243H2.881c-.486 0-.881-.492-.881-1.095V7.875c0-.63.412-1.182.88-1.182h1.354zm3.688-3.7C8.01 2.404 8.49 1.99 9.018 2c.754.015 1.204.663 1.36.983.284.585.292 1.549.097 2.167-.177.56-.586 1.296-.586 1.296h3.066c.324 0 .625.164.826.449.204.29.27.668.178 1.011l-1.387 5.183c-.126.499-.544.847-1.016.847H5.53V6.693c1.385-.309 2.236-2.632 2.392-3.7z"/>
384
406
  </g>
385
- </svg><span>78</span>
407
+ </svg><span>85</span>
386
408
  </div>
387
409
  </li>
388
410
 
389
411
  <li>
390
412
  <div class="avatar">
391
- <a href="https://toutiao.io/subjects/405015" target="_blank">
392
- <img src="https://img.toutiao.io/subject/0bc4a65bf09748718c9acc6991f50e49/thumb" loading="lazy" title="方丈的寺院 - 独家号" alt="方丈的寺院 - 独家号" />
413
+ <a href="https://toutiao.io/subjects/98777" target="_blank">
414
+ <img src="https://img.toutiao.io/subject/c34a137f55bf46c3a2cf63e3677a30b1/thumb" loading="lazy" title="Bloomingroses - 独家号" alt="Bloomingroses - 独家号" />
393
415
  </a>
394
416
  </div>
395
417
  <div class="info">
396
418
  <div class="rank">
397
419
  <span title="Ranking 11">11</span>
398
- <a href="https://toutiao.io/k/f4vabj7" target="_blank" title="微服务如何划分">微服务如何划分</a>
420
+ <a href="https://toutiao.io/k/75br1se" target="_blank" title="SpringBoot性能优化大全,贼好使!">SpringBoot性能优化大全,贼好使!</a>
399
421
  </div>
400
422
 
401
423
  <div class="details">
@@ -408,24 +430,24 @@
408
430
  <path d="M0 0h16v16H0z"/>
409
431
  <path fill="#9E9E9E" d="M4.234 6.693v7.243H2.881c-.486 0-.881-.492-.881-1.095V7.875c0-.63.412-1.182.88-1.182h1.354zm3.688-3.7C8.01 2.404 8.49 1.99 9.018 2c.754.015 1.204.663 1.36.983.284.585.292 1.549.097 2.167-.177.56-.586 1.296-.586 1.296h3.066c.324 0 .625.164.826.449.204.29.27.668.178 1.011l-1.387 5.183c-.126.499-.544.847-1.016.847H5.53V6.693c1.385-.309 2.236-2.632 2.392-3.7z"/>
410
432
  </g>
411
- </svg><span>78</span>
433
+ </svg><span>68</span>
412
434
  </div>
413
435
  </li>
414
436
 
415
437
  <li>
416
438
  <div class="avatar">
417
- <a href="https://toutiao.io/subjects/24912" target="_blank">
418
- <img src="https://img.toutiao.io/subject/0bd01d30f85345feb85424b2928d99b2/thumb" loading="lazy" title="进击的程序猿 - 独家号" alt="进击的程序猿 - 独家号" />
439
+ <a href="https://toutiao.io/subjects/420867" target="_blank">
440
+ <img src="https://img.toutiao.io/user/776a2999bca149088ebe52366451432a/thumb" loading="lazy" title="hit9 - 独家号" alt="hit9 - 独家号" />
419
441
  </a>
420
442
  </div>
421
443
  <div class="info">
422
444
  <div class="rank">
423
445
  <span title="Ranking 12">12</span>
424
- <a href="https://toutiao.io/k/vcpzf1w" target="_blank" title="2万字,详解数据湖,概念、特征、架构、方案、场景以及建湖全过程(建议收藏)">2万字,详解数据湖,概念、特征、架构、方案、场景以及建湖全过程(建议收藏)</a>
446
+ <a href="https://toutiao.io/k/hjda293" target="_blank" title="我的命令行开发环境 ❤️">我的命令行开发环境 ❤️</a>
425
447
  </div>
426
448
 
427
449
  <div class="details">
428
-
450
+ 常言道,工欲善其事、必先利其器,熟练一套高效且趁手的工具,对开发工作的重要性不言而喻。本文分享我的命令行开发环境,文章较长,配图较多,其中几处详细内容,已将其折叠起来,读者可视兴趣...
429
451
  </div>
430
452
  </div>
431
453
  <div class="followers" title="followers">
@@ -434,24 +456,24 @@
434
456
  <path d="M0 0h16v16H0z"/>
435
457
  <path fill="#9E9E9E" d="M4.234 6.693v7.243H2.881c-.486 0-.881-.492-.881-1.095V7.875c0-.63.412-1.182.88-1.182h1.354zm3.688-3.7C8.01 2.404 8.49 1.99 9.018 2c.754.015 1.204.663 1.36.983.284.585.292 1.549.097 2.167-.177.56-.586 1.296-.586 1.296h3.066c.324 0 .625.164.826.449.204.29.27.668.178 1.011l-1.387 5.183c-.126.499-.544.847-1.016.847H5.53V6.693c1.385-.309 2.236-2.632 2.392-3.7z"/>
436
458
  </g>
437
- </svg><span>84</span>
459
+ </svg><span>66</span>
438
460
  </div>
439
461
  </li>
440
462
 
441
463
  <li>
442
464
  <div class="avatar">
443
- <a href="https://toutiao.io/subjects/98777" target="_blank">
444
- <img src="https://img.toutiao.io/subject/c34a137f55bf46c3a2cf63e3677a30b1/thumb" loading="lazy" title="Bloomingroses - 独家号" alt="Bloomingroses - 独家号" />
465
+ <a href="https://toutiao.io/subjects/4" target="_blank">
466
+ <img src="https://img.toutiao.io/subject/d2f421bbe0be47369b6560e316a5153b/thumb" loading="lazy" title="头条精选 - 独家号" alt="头条精选 - 独家号" />
445
467
  </a>
446
468
  </div>
447
469
  <div class="info">
448
470
  <div class="rank">
449
471
  <span title="Ranking 13">13</span>
450
- <a href="https://toutiao.io/k/75br1se" target="_blank" title="SpringBoot性能优化大全,贼好使!">SpringBoot性能优化大全,贼好使!</a>
472
+ <a href="https://toutiao.io/k/gsosp6w" target="_blank" title="阿里巴巴开源的低代码引擎">阿里巴巴开源的低代码引擎</a>
451
473
  </div>
452
474
 
453
475
  <div class="details">
454
-
476
+ 以下内容选自「码农周刊 VIP 会员」圈子,每日更新,精彩不断。低代码引擎是一款为低代码平台开发者提供的,具备强大定制扩展能力的低代码设计器研发框架。低代码引擎的核心是设计器,通过...
455
477
  </div>
456
478
  </div>
457
479
  <div class="followers" title="followers">
@@ -460,24 +482,24 @@
460
482
  <path d="M0 0h16v16H0z"/>
461
483
  <path fill="#9E9E9E" d="M4.234 6.693v7.243H2.881c-.486 0-.881-.492-.881-1.095V7.875c0-.63.412-1.182.88-1.182h1.354zm3.688-3.7C8.01 2.404 8.49 1.99 9.018 2c.754.015 1.204.663 1.36.983.284.585.292 1.549.097 2.167-.177.56-.586 1.296-.586 1.296h3.066c.324 0 .625.164.826.449.204.29.27.668.178 1.011l-1.387 5.183c-.126.499-.544.847-1.016.847H5.53V6.693c1.385-.309 2.236-2.632 2.392-3.7z"/>
462
484
  </g>
463
- </svg><span>68</span>
485
+ </svg><span>66</span>
464
486
  </div>
465
487
  </li>
466
488
 
467
489
  <li>
468
490
  <div class="avatar">
469
- <a href="https://toutiao.io/subjects/420867" target="_blank">
470
- <img src="https://img.toutiao.io/user/776a2999bca149088ebe52366451432a/thumb" loading="lazy" title="hit9 - 独家号" alt="hit9 - 独家号" />
491
+ <a href="https://toutiao.io/subjects/266939" target="_blank">
492
+ <img src="https://img.toutiao.io/subject/79cba8fc8d5a4f8a8e6cf60cfffeb6dc/thumb" loading="lazy" title="公众号-35岁程序员那些事 - 独家号" alt="公众号-35岁程序员那些事 - 独家号" />
471
493
  </a>
472
494
  </div>
473
495
  <div class="info">
474
496
  <div class="rank">
475
497
  <span title="Ranking 14">14</span>
476
- <a href="https://toutiao.io/k/hjda293" target="_blank" title="我的命令行开发环境 ❤️">我的命令行开发环境 ❤️</a>
498
+ <a href="https://toutiao.io/k/enmg99d" target="_blank" title="架构师如何选型分布式业务网关">架构师如何选型分布式业务网关</a>
477
499
  </div>
478
500
 
479
501
  <div class="details">
480
- 常言道,工欲善其事、必先利其器,熟练一套高效且趁手的工具,对开发工作的重要性不言而喻。本文分享我的命令行开发环境,文章较长,配图较多,其中几处详细内容,已将其折叠起来,读者可视兴趣...
502
+
481
503
  </div>
482
504
  </div>
483
505
  <div class="followers" title="followers">
@@ -486,24 +508,24 @@
486
508
  <path d="M0 0h16v16H0z"/>
487
509
  <path fill="#9E9E9E" d="M4.234 6.693v7.243H2.881c-.486 0-.881-.492-.881-1.095V7.875c0-.63.412-1.182.88-1.182h1.354zm3.688-3.7C8.01 2.404 8.49 1.99 9.018 2c.754.015 1.204.663 1.36.983.284.585.292 1.549.097 2.167-.177.56-.586 1.296-.586 1.296h3.066c.324 0 .625.164.826.449.204.29.27.668.178 1.011l-1.387 5.183c-.126.499-.544.847-1.016.847H5.53V6.693c1.385-.309 2.236-2.632 2.392-3.7z"/>
488
510
  </g>
489
- </svg><span>66</span>
511
+ </svg><span>61</span>
490
512
  </div>
491
513
  </li>
492
514
 
493
515
  <li>
494
516
  <div class="avatar">
495
- <a href="https://toutiao.io/subjects/350352" target="_blank">
496
- <img src="https://img.toutiao.io/subject/4325865040b44c0b9e2d8d80a83d1d11/thumb" loading="lazy" title="编程一生 - 独家号" alt="编程一生 - 独家号" />
517
+ <a href="https://toutiao.io/subjects/63673" target="_blank">
518
+ <img src="https://img.toutiao.io/subject/1a197bcacc0346c186be58be1aaf34bd/thumb" loading="lazy" title="Java后端技术 - 独家号" alt="Java后端技术 - 独家号" />
497
519
  </a>
498
520
  </div>
499
521
  <div class="info">
500
522
  <div class="rank">
501
523
  <span title="Ranking 15">15</span>
502
- <a href="https://toutiao.io/k/j4nqhbc" target="_blank" title="趣谈IO多路复用的本质">趣谈IO多路复用的本质</a>
524
+ <a href="https://toutiao.io/k/qnfl3t6" target="_blank" title="最常用的架构模式">最常用的架构模式</a>
503
525
  </div>
504
526
 
505
527
  <div class="details">
506
-
528
+ 观其设计知其人A MAN is KNOWN by the DESIGN he keeps原文:Most Useful Software Architecture Patterns ...
507
529
  </div>
508
530
  </div>
509
531
  <div class="followers" title="followers">
@@ -512,7 +534,7 @@
512
534
  <path d="M0 0h16v16H0z"/>
513
535
  <path fill="#9E9E9E" d="M4.234 6.693v7.243H2.881c-.486 0-.881-.492-.881-1.095V7.875c0-.63.412-1.182.88-1.182h1.354zm3.688-3.7C8.01 2.404 8.49 1.99 9.018 2c.754.015 1.204.663 1.36.983.284.585.292 1.549.097 2.167-.177.56-.586 1.296-.586 1.296h3.066c.324 0 .625.164.826.449.204.29.27.668.178 1.011l-1.387 5.183c-.126.499-.544.847-1.016.847H5.53V6.693c1.385-.309 2.236-2.632 2.392-3.7z"/>
514
536
  </g>
515
- </svg><span>70</span>
537
+ </svg><span>64</span>
516
538
  </div>
517
539
  </li>
518
540
 
@@ -544,18 +566,18 @@
544
566
 
545
567
  <li>
546
568
  <div class="avatar">
547
- <a href="https://toutiao.io/subjects/4" target="_blank">
548
- <img src="https://img.toutiao.io/subject/d2f421bbe0be47369b6560e316a5153b/thumb" loading="lazy" title="头条精选 - 独家号" alt="头条精选 - 独家号" />
569
+ <a href="https://toutiao.io/subjects/380054" target="_blank">
570
+ <img src="https://img.toutiao.io/subject/c9bc51847b0c4b49aca52d0eaa087ed1/thumb" loading="lazy" title="冷星前端圈 - 独家号" alt="冷星前端圈 - 独家号" />
549
571
  </a>
550
572
  </div>
551
573
  <div class="info">
552
574
  <div class="rank">
553
575
  <span title="Ranking 17">17</span>
554
- <a href="https://toutiao.io/k/gsosp6w" target="_blank" title="阿里巴巴开源的低代码引擎">阿里巴巴开源的低代码引擎</a>
576
+ <a href="https://toutiao.io/k/yuv3dgy" target="_blank" title="输入URL开始建立你的前端知识体系">输入URL开始建立你的前端知识体系</a>
555
577
  </div>
556
578
 
557
579
  <div class="details">
558
- 以下内容选自「码农周刊 VIP 会员」圈子,每日更新,精彩不断。低代码引擎是一款为低代码平台开发者提供的,具备强大定制扩展能力的低代码设计器研发框架。低代码引擎的核心是设计器,通过...
580
+
559
581
  </div>
560
582
  </div>
561
583
  <div class="followers" title="followers">
@@ -564,24 +586,24 @@
564
586
  <path d="M0 0h16v16H0z"/>
565
587
  <path fill="#9E9E9E" d="M4.234 6.693v7.243H2.881c-.486 0-.881-.492-.881-1.095V7.875c0-.63.412-1.182.88-1.182h1.354zm3.688-3.7C8.01 2.404 8.49 1.99 9.018 2c.754.015 1.204.663 1.36.983.284.585.292 1.549.097 2.167-.177.56-.586 1.296-.586 1.296h3.066c.324 0 .625.164.826.449.204.29.27.668.178 1.011l-1.387 5.183c-.126.499-.544.847-1.016.847H5.53V6.693c1.385-.309 2.236-2.632 2.392-3.7z"/>
566
588
  </g>
567
- </svg><span>60</span>
589
+ </svg><span>59</span>
568
590
  </div>
569
591
  </li>
570
592
 
571
593
  <li>
572
594
  <div class="avatar">
573
- <a href="https://toutiao.io/subjects/266939" target="_blank">
574
- <img src="https://img.toutiao.io/subject/79cba8fc8d5a4f8a8e6cf60cfffeb6dc/thumb" loading="lazy" title="公众号-35岁程序员那些事 - 独家号" alt="公众号-35岁程序员那些事 - 独家号" />
595
+ <a href="https://toutiao.io/subjects/182218" target="_blank">
596
+ <img src="https://img.toutiao.io/subject/4f9b8a1b9ad34bf3b815671f8461ff25/thumb" loading="lazy" title="又拍云 - 独家号" alt="又拍云 - 独家号" />
575
597
  </a>
576
598
  </div>
577
599
  <div class="info">
578
600
  <div class="rank">
579
601
  <span title="Ranking 18">18</span>
580
- <a href="https://toutiao.io/k/enmg99d" target="_blank" title="架构师如何选型分布式业务网关">架构师如何选型分布式业务网关</a>
602
+ <a href="https://toutiao.io/k/kd3u5dk" target="_blank" title="面试官问,Redis 是单线程还是多线程?我懵了">面试官问,Redis 是单线程还是多线程?我懵了</a>
581
603
  </div>
582
604
 
583
605
  <div class="details">
584
-
606
+ 我们平时看到介绍 Redis 的文章,都会说 Redis 是单线程的。但是我们学习的时候,比如 Redis 的 bgsave 命令,它的作用是在后台异步保存当前数据库的数据到磁盘,...
585
607
  </div>
586
608
  </div>
587
609
  <div class="followers" title="followers">
@@ -590,20 +612,20 @@
590
612
  <path d="M0 0h16v16H0z"/>
591
613
  <path fill="#9E9E9E" d="M4.234 6.693v7.243H2.881c-.486 0-.881-.492-.881-1.095V7.875c0-.63.412-1.182.88-1.182h1.354zm3.688-3.7C8.01 2.404 8.49 1.99 9.018 2c.754.015 1.204.663 1.36.983.284.585.292 1.549.097 2.167-.177.56-.586 1.296-.586 1.296h3.066c.324 0 .625.164.826.449.204.29.27.668.178 1.011l-1.387 5.183c-.126.499-.544.847-1.016.847H5.53V6.693c1.385-.309 2.236-2.632 2.392-3.7z"/>
592
614
  </g>
593
- </svg><span>55</span>
615
+ </svg><span>57</span>
594
616
  </div>
595
617
  </li>
596
618
 
597
619
  <li>
598
620
  <div class="avatar">
599
- <a href="https://toutiao.io/subjects/380054" target="_blank">
600
- <img src="https://img.toutiao.io/subject/c9bc51847b0c4b49aca52d0eaa087ed1/thumb" loading="lazy" title="冷星前端圈 - 独家号" alt="冷星前端圈 - 独家号" />
621
+ <a href="https://toutiao.io/subjects/24912" target="_blank">
622
+ <img src="https://img.toutiao.io/subject/0bd01d30f85345feb85424b2928d99b2/thumb" loading="lazy" title="进击的程序猿 - 独家号" alt="进击的程序猿 - 独家号" />
601
623
  </a>
602
624
  </div>
603
625
  <div class="info">
604
626
  <div class="rank">
605
627
  <span title="Ranking 19">19</span>
606
- <a href="https://toutiao.io/k/yuv3dgy" target="_blank" title="输入URL开始建立你的前端知识体系">输入URL开始建立你的前端知识体系</a>
628
+ <a href="https://toutiao.io/k/21bsuqp" target="_blank" title="快手实时数仓建设实践">快手实时数仓建设实践</a>
607
629
  </div>
608
630
 
609
631
  <div class="details">
@@ -622,18 +644,18 @@
622
644
 
623
645
  <li>
624
646
  <div class="avatar">
625
- <a href="https://toutiao.io/subjects/63673" target="_blank">
626
- <img src="https://img.toutiao.io/subject/1a197bcacc0346c186be58be1aaf34bd/thumb" loading="lazy" title="Java后端技术 - 独家号" alt="Java后端技术 - 独家号" />
647
+ <a href="https://toutiao.io/subjects/98777" target="_blank">
648
+ <img src="https://img.toutiao.io/subject/c34a137f55bf46c3a2cf63e3677a30b1/thumb" loading="lazy" title="Bloomingroses - 独家号" alt="Bloomingroses - 独家号" />
627
649
  </a>
628
650
  </div>
629
651
  <div class="info">
630
652
  <div class="rank">
631
653
  <span title="Ranking 20">20</span>
632
- <a href="https://toutiao.io/k/qnfl3t6" target="_blank" title="最常用的架构模式">最常用的架构模式</a>
654
+ <a href="https://toutiao.io/k/5m90d51" target="_blank" title="谁让你跪舔了,程序员得这样向上管理">谁让你跪舔了,程序员得这样向上管理</a>
633
655
  </div>
634
656
 
635
657
  <div class="details">
636
- 观其设计知其人A MAN is KNOWN by the DESIGN he keeps原文:Most Useful Software Architecture Patterns ...
658
+
637
659
  </div>
638
660
  </div>
639
661
  <div class="followers" title="followers">
@@ -642,20 +664,20 @@
642
664
  <path d="M0 0h16v16H0z"/>
643
665
  <path fill="#9E9E9E" d="M4.234 6.693v7.243H2.881c-.486 0-.881-.492-.881-1.095V7.875c0-.63.412-1.182.88-1.182h1.354zm3.688-3.7C8.01 2.404 8.49 1.99 9.018 2c.754.015 1.204.663 1.36.983.284.585.292 1.549.097 2.167-.177.56-.586 1.296-.586 1.296h3.066c.324 0 .625.164.826.449.204.29.27.668.178 1.011l-1.387 5.183c-.126.499-.544.847-1.016.847H5.53V6.693c1.385-.309 2.236-2.632 2.392-3.7z"/>
644
666
  </g>
645
- </svg><span>55</span>
667
+ </svg><span>56</span>
646
668
  </div>
647
669
  </li>
648
670
 
649
671
  <li>
650
672
  <div class="avatar">
651
- <a href="https://toutiao.io/subjects/24912" target="_blank">
652
- <img src="https://img.toutiao.io/subject/0bd01d30f85345feb85424b2928d99b2/thumb" loading="lazy" title="进击的程序猿 - 独家号" alt="进击的程序猿 - 独家号" />
673
+ <a href="https://toutiao.io/subjects/132403" target="_blank">
674
+ <img src="https://img.toutiao.io/subject/d9b0b833d7e44d38b958e8a6003d36b4/thumb" loading="lazy" title="浪客用react,java全栈 - 独家号" alt="浪客用react,java全栈 - 独家号" />
653
675
  </a>
654
676
  </div>
655
677
  <div class="info">
656
678
  <div class="rank">
657
679
  <span title="Ranking 21">21</span>
658
- <a href="https://toutiao.io/k/21bsuqp" target="_blank" title="快手实时数仓建设实践">快手实时数仓建设实践</a>
680
+ <a href="https://toutiao.io/k/w133tux" target="_blank" title="外部接口大量超时,把整个系统拖垮,引发雪崩!如何解决?">外部接口大量超时,把整个系统拖垮,引发雪崩!如何解决?</a>
659
681
  </div>
660
682
 
661
683
  <div class="details">
@@ -668,20 +690,20 @@
668
690
  <path d="M0 0h16v16H0z"/>
669
691
  <path fill="#9E9E9E" d="M4.234 6.693v7.243H2.881c-.486 0-.881-.492-.881-1.095V7.875c0-.63.412-1.182.88-1.182h1.354zm3.688-3.7C8.01 2.404 8.49 1.99 9.018 2c.754.015 1.204.663 1.36.983.284.585.292 1.549.097 2.167-.177.56-.586 1.296-.586 1.296h3.066c.324 0 .625.164.826.449.204.29.27.668.178 1.011l-1.387 5.183c-.126.499-.544.847-1.016.847H5.53V6.693c1.385-.309 2.236-2.632 2.392-3.7z"/>
670
692
  </g>
671
- </svg><span>58</span>
693
+ </svg><span>59</span>
672
694
  </div>
673
695
  </li>
674
696
 
675
697
  <li>
676
698
  <div class="avatar">
677
- <a href="https://toutiao.io/subjects/26578" target="_blank">
678
- <img src="https://img.toutiao.io/subject/8e12ef64799649acbfd936883ef16c3c/thumb" loading="lazy" title="服务架构及中台 - 独家号" alt="服务架构及中台 - 独家号" />
699
+ <a href="https://toutiao.io/subjects/348014" target="_blank">
700
+ <img src="https://img.toutiao.io/subject/dc985e32ff464581afaa81f175880312/thumb" loading="lazy" title="dotnet - 独家号" alt="dotnet - 独家号" />
679
701
  </a>
680
702
  </div>
681
703
  <div class="info">
682
704
  <div class="rank">
683
705
  <span title="Ranking 22">22</span>
684
- <a href="https://toutiao.io/k/7kdj29e" target="_blank" title="这 6 个开源项目很 Cool">这 6 个开源项目很 Cool</a>
706
+ <a href="https://toutiao.io/k/77yywq6" target="_blank" title="阿里慢SQL治理5大经典案例">阿里慢SQL治理5大经典案例</a>
685
707
  </div>
686
708
 
687
709
  <div class="details">
@@ -694,20 +716,20 @@
694
716
  <path d="M0 0h16v16H0z"/>
695
717
  <path fill="#9E9E9E" d="M4.234 6.693v7.243H2.881c-.486 0-.881-.492-.881-1.095V7.875c0-.63.412-1.182.88-1.182h1.354zm3.688-3.7C8.01 2.404 8.49 1.99 9.018 2c.754.015 1.204.663 1.36.983.284.585.292 1.549.097 2.167-.177.56-.586 1.296-.586 1.296h3.066c.324 0 .625.164.826.449.204.29.27.668.178 1.011l-1.387 5.183c-.126.499-.544.847-1.016.847H5.53V6.693c1.385-.309 2.236-2.632 2.392-3.7z"/>
696
718
  </g>
697
- </svg><span>50</span>
719
+ </svg><span>52</span>
698
720
  </div>
699
721
  </li>
700
722
 
701
723
  <li>
702
724
  <div class="avatar">
703
- <a href="https://toutiao.io/subjects/194141" target="_blank">
704
- <img src="https://img.toutiao.io/subject/0a536810212f4f7c9c1f451fc9f55540/thumb" loading="lazy" title="乱点技能树 - 独家号" alt="乱点技能树 - 独家号" />
725
+ <a href="https://toutiao.io/subjects/350352" target="_blank">
726
+ <img src="https://img.toutiao.io/subject/4325865040b44c0b9e2d8d80a83d1d11/thumb" loading="lazy" title="编程一生 - 独家号" alt="编程一生 - 独家号" />
705
727
  </a>
706
728
  </div>
707
729
  <div class="info">
708
730
  <div class="rank">
709
731
  <span title="Ranking 23">23</span>
710
- <a href="https://toutiao.io/k/6y65s8u" target="_blank" title="如何保证数据库缓存的最终一致性?">如何保证数据库缓存的最终一致性?</a>
732
+ <a href="https://toutiao.io/k/0i01zb6" target="_blank" title="领域驱动设计(DDD)中简单易用的10种技巧">领域驱动设计(DDD)中简单易用的10种技巧</a>
711
733
  </div>
712
734
 
713
735
  <div class="details">
@@ -733,7 +755,7 @@
733
755
  <div class="info">
734
756
  <div class="rank">
735
757
  <span title="Ranking 24">24</span>
736
- <a href="https://toutiao.io/k/5m90d51" target="_blank" title="谁让你跪舔了,程序员得这样向上管理">谁让你跪舔了,程序员得这样向上管理</a>
758
+ <a href="https://toutiao.io/k/nc8n4q2" target="_blank" title="MySQL 分库分表及其平滑扩容方案">MySQL 分库分表及其平滑扩容方案</a>
737
759
  </div>
738
760
 
739
761
  <div class="details">
@@ -746,24 +768,24 @@
746
768
  <path d="M0 0h16v16H0z"/>
747
769
  <path fill="#9E9E9E" d="M4.234 6.693v7.243H2.881c-.486 0-.881-.492-.881-1.095V7.875c0-.63.412-1.182.88-1.182h1.354zm3.688-3.7C8.01 2.404 8.49 1.99 9.018 2c.754.015 1.204.663 1.36.983.284.585.292 1.549.097 2.167-.177.56-.586 1.296-.586 1.296h3.066c.324 0 .625.164.826.449.204.29.27.668.178 1.011l-1.387 5.183c-.126.499-.544.847-1.016.847H5.53V6.693c1.385-.309 2.236-2.632 2.392-3.7z"/>
748
770
  </g>
749
- </svg><span>56</span>
771
+ </svg><span>51</span>
750
772
  </div>
751
773
  </li>
752
774
 
753
775
  <li>
754
776
  <div class="avatar">
755
- <a href="https://toutiao.io/subjects/182218" target="_blank">
756
- <img src="https://img.toutiao.io/subject/4f9b8a1b9ad34bf3b815671f8461ff25/thumb" loading="lazy" title="又拍云 - 独家号" alt="又拍云 - 独家号" />
777
+ <a href="https://toutiao.io/subjects/26578" target="_blank">
778
+ <img src="https://img.toutiao.io/subject/8e12ef64799649acbfd936883ef16c3c/thumb" loading="lazy" title="服务架构及中台 - 独家号" alt="服务架构及中台 - 独家号" />
757
779
  </a>
758
780
  </div>
759
781
  <div class="info">
760
782
  <div class="rank">
761
783
  <span title="Ranking 25">25</span>
762
- <a href="https://toutiao.io/k/kd3u5dk" target="_blank" title="面试官问,Redis 是单线程还是多线程?我懵了">面试官问,Redis 是单线程还是多线程?我懵了</a>
784
+ <a href="https://toutiao.io/k/tyojqf4" target="_blank" title="设计一个靠谱的监控告警平台">设计一个靠谱的监控告警平台</a>
763
785
  </div>
764
786
 
765
787
  <div class="details">
766
- 我们平时看到介绍 Redis 的文章,都会说 Redis 是单线程的。但是我们学习的时候,比如 Redis 的 bgsave 命令,它的作用是在后台异步保存当前数据库的数据到磁盘,...
788
+
767
789
  </div>
768
790
  </div>
769
791
  <div class="followers" title="followers">
@@ -772,7 +794,7 @@
772
794
  <path d="M0 0h16v16H0z"/>
773
795
  <path fill="#9E9E9E" d="M4.234 6.693v7.243H2.881c-.486 0-.881-.492-.881-1.095V7.875c0-.63.412-1.182.88-1.182h1.354zm3.688-3.7C8.01 2.404 8.49 1.99 9.018 2c.754.015 1.204.663 1.36.983.284.585.292 1.549.097 2.167-.177.56-.586 1.296-.586 1.296h3.066c.324 0 .625.164.826.449.204.29.27.668.178 1.011l-1.387 5.183c-.126.499-.544.847-1.016.847H5.53V6.693c1.385-.309 2.236-2.632 2.392-3.7z"/>
774
796
  </g>
775
- </svg><span>55</span>
797
+ </svg><span>53</span>
776
798
  </div>
777
799
  </li>
778
800
 
@@ -792,7 +814,7 @@
792
814
  <img src="https://img.shields.io/npm/v/@wcj/github-rank.svg?label=unpkg">
793
815
  </a>
794
816
  </div>
795
- <div class="time">Last cache created on 2022/3/18 by Github API v3.</div>
817
+ <div class="time">Last cache created on 2022/3/21 by Github API v3.</div>
796
818
  Create by <a href="https://github.com/jaywcjlove" target="_blank">小弟调调™</a>.
797
819
  </div>
798
820
  </body>