Skip to content

Commit 6aba6ef

Browse files
committed
add
1 parent 84e9a12 commit 6aba6ef

File tree

13 files changed

+656
-15
lines changed

13 files changed

+656
-15
lines changed

categories/10000-Hours/index.html

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
<meta property="og:description" content="记录性能测试和调优的心得。" />
5555
<meta property="og:type" content="website" />
5656
<meta property="og:url" content="http://tinycedar.com/categories/10000-Hours/" />
57-
<meta property="og:updated_time" content="2017-10-27T02:34:08&#43;08:00"/>
57+
<meta property="og:updated_time" content="2018-12-09T15:09:26&#43;08:00"/>
5858

5959
<meta itemprop="name" content="10000 Hours">
6060
<meta itemprop="description" content="记录性能测试和调优的心得。">
@@ -137,6 +137,17 @@ <h2 class="archive-name">10000 Hours</h2>
137137

138138

139139

140+
<div class="archive-post">
141+
<span class="archive-post-time">
142+
2018-12-09
143+
</span>
144+
<span class="archive-post-title">
145+
<a href="/post/2018/12/09/jvm-gc-optimization/" class="archive-post-link">
146+
2018 12 09 Jvm Gc Optimization
147+
</a>
148+
</span>
149+
</div>
150+
140151
<div class="archive-post">
141152
<span class="archive-post-time">
142153
2017-10-27

categories/10000-Hours/index.xml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,20 @@
66
<description>Recent content in 10000 Hours on Daniel&#39;s blog</description>
77
<generator>Hugo -- gohugo.io</generator>
88
<language>zh-cn</language>
9-
<lastBuildDate>Fri, 27 Oct 2017 02:34:08 +0800</lastBuildDate>
9+
<lastBuildDate>Sun, 09 Dec 2018 15:09:26 +0800</lastBuildDate>
1010

1111
<atom:link href="http://tinycedar.com/categories/10000-Hours/index.xml" rel="self" type="application/rss+xml" />
1212

1313

14+
<item>
15+
<title>2018 12 09 Jvm Gc Optimization</title>
16+
<link>http://tinycedar.com/post/2018/12/09/jvm-gc-optimization/</link>
17+
<pubDate>Sun, 09 Dec 2018 15:09:26 +0800</pubDate>
18+
19+
<guid>http://tinycedar.com/post/2018/12/09/jvm-gc-optimization/</guid>
20+
<description>JVM上的GC,解放了Java程序员的生产力,使手动管理内存变成了上古武功。但Java应用动辄几十毫秒甚至秒级的暂停时间,变成了所有Java</description>
21+
</item>
22+
1423
<item>
1524
<title>BIO vs NIO vs AIO</title>
1625
<link>http://tinycedar.com/post/2017/10/27/bio-vs-nio-vs-aio/</link>

categories/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
<meta property="og:description" content="记录性能测试和调优的心得。" />
5555
<meta property="og:type" content="website" />
5656
<meta property="og:url" content="http://tinycedar.com/categories/" />
57-
<meta property="og:updated_time" content="2017-10-27T02:34:08&#43;08:00"/>
57+
<meta property="og:updated_time" content="2018-12-09T15:09:26&#43;08:00"/>
5858

5959
<meta itemprop="name" content="Categories">
6060
<meta itemprop="description" content="记录性能测试和调优的心得。">
@@ -137,7 +137,7 @@
137137

138138
<a class="category-link" href="/categories/10000-Hours/">
139139
10000 Hours
140-
<span class="category-count">2</span>
140+
<span class="category-count">3</span>
141141
</a>
142142

143143
<a class="category-link" href="/categories/%E7%8E%AF%E5%A2%83%E6%90%AD%E5%BB%BA/">

categories/index.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66
<description>Recent content in Categories on Daniel&#39;s blog</description>
77
<generator>Hugo -- gohugo.io</generator>
88
<language>zh-cn</language>
9-
<lastBuildDate>Fri, 27 Oct 2017 02:34:08 +0800</lastBuildDate>
9+
<lastBuildDate>Sun, 09 Dec 2018 15:09:26 +0800</lastBuildDate>
1010

1111
<atom:link href="http://tinycedar.com/categories/index.xml" rel="self" type="application/rss+xml" />
1212

1313

1414
<item>
1515
<title>10000 Hours</title>
1616
<link>http://tinycedar.com/categories/10000-Hours/</link>
17-
<pubDate>Fri, 27 Oct 2017 02:34:08 +0800</pubDate>
17+
<pubDate>Sun, 09 Dec 2018 15:09:26 +0800</pubDate>
1818

1919
<guid>http://tinycedar.com/categories/10000-Hours/</guid>
2020
<description></description>

index.html

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
<meta property="og:description" content="记录性能测试和调优的心得。" />
5555
<meta property="og:type" content="website" />
5656
<meta property="og:url" content="http://tinycedar.com/" />
57-
<meta property="og:updated_time" content="2018-10-09T14:16:04&#43;08:00"/>
57+
<meta property="og:updated_time" content="2018-12-09T15:09:26&#43;08:00"/>
5858

5959
<meta itemprop="name" content="Daniel&#39;s blog">
6060
<meta itemprop="description" content="记录性能测试和调优的心得。">
@@ -130,6 +130,32 @@
130130

131131

132132

133+
<article class="post">
134+
<header class="post-header">
135+
<h1 class="post-title"><a class="post-link" href="/post/2018/12/09/jvm-gc-optimization/">2018 12 09 Jvm Gc Optimization</a></h1>
136+
<div class="post-meta">
137+
<span class="post-time"> 2018-12-09 </span>
138+
<div class="post-category">
139+
140+
<a href="/categories/10000-Hours/"> 10000 Hours </a>
141+
142+
</div>
143+
<span class="more-meta"> 约 1987 字 </span>
144+
<span class="more-meta"> 预计阅读 4 分钟 </span>
145+
</div>
146+
</header>
147+
148+
<div class="post-content">
149+
<div class="post-summary">
150+
JVM上的GC,解放了Java程序员的生产力,使手动管理内存变成了上古武功。但Java应用动辄几十毫秒甚至秒级的暂停时间,变成了所有Java
151+
</div>
152+
<div class="read-more">
153+
<a href="/post/2018/12/09/jvm-gc-optimization/" class="read-more-link">阅读更多</a>
154+
</div>
155+
</div>
156+
</article>
157+
158+
133159
<article class="post">
134160
<header class="post-header">
135161
<h1 class="post-title"><a class="post-link" href="/post/2018/10/09/zhoushan-travel/">十月舟山团建行程</a></h1>

index.xml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,20 @@
66
<description>Recent content on Daniel&#39;s blog</description>
77
<generator>Hugo -- gohugo.io</generator>
88
<language>zh-cn</language>
9-
<lastBuildDate>Tue, 09 Oct 2018 14:16:04 +0800</lastBuildDate>
9+
<lastBuildDate>Sun, 09 Dec 2018 15:09:26 +0800</lastBuildDate>
1010

1111
<atom:link href="http://tinycedar.com/index.xml" rel="self" type="application/rss+xml" />
1212

1313

14+
<item>
15+
<title>2018 12 09 Jvm Gc Optimization</title>
16+
<link>http://tinycedar.com/post/2018/12/09/jvm-gc-optimization/</link>
17+
<pubDate>Sun, 09 Dec 2018 15:09:26 +0800</pubDate>
18+
19+
<guid>http://tinycedar.com/post/2018/12/09/jvm-gc-optimization/</guid>
20+
<description>JVM上的GC,解放了Java程序员的生产力,使手动管理内存变成了上古武功。但Java应用动辄几十毫秒甚至秒级的暂停时间,变成了所有Java</description>
21+
</item>
22+
1423
<item>
1524
<title>十月舟山团建行程</title>
1625
<link>http://tinycedar.com/post/2018/10/09/zhoushan-travel/</link>

post/2016/07/20/build-your-own-blog1/index.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,11 @@ <h2 class="post-toc-title">文章目录</h2>
212212

213213

214214

215+
<div class="post-outdated">
216+
<div class="hint">
217+
<p>【注意】最后更新于 <span class="timeago" datetime="2018-10-18T03:54:06" title="October 18, 2018">October 18, 2018</span>,文中内容可能已过时,请谨慎使用。</p>
218+
</div>
219+
</div>
215220

216221

217222
<div class="post-content">

post/2017/10/27/bio-vs-nio-vs-aio/index.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,11 @@ <h2 class="post-toc-title">文章目录</h2>
176176

177177

178178

179+
<div class="post-outdated">
180+
<div class="hint">
181+
<p>【注意】最后更新于 <span class="timeago" datetime="2018-10-18T16:22:59" title="October 18, 2018">October 18, 2018</span>,文中内容可能已过时,请谨慎使用。</p>
182+
</div>
183+
</div>
179184

180185

181186
<div class="post-content">

post/2018/10/09/zhoushan-travel/index.html

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,11 @@ <h2 class="post-toc-title">文章目录</h2>
179179

180180

181181

182+
<div class="post-outdated">
183+
<div class="hint">
184+
<p>【注意】最后更新于 <span class="timeago" datetime="2018-10-23T21:08:49" title="October 23, 2018">October 23, 2018</span>,文中内容可能已过时,请谨慎使用。</p>
185+
</div>
186+
</div>
182187

183188

184189
<div class="post-content">
@@ -349,6 +354,11 @@ <h2 id="费用相关">费用相关</h2>
349354

350355
<nav class="post-nav">
351356

357+
<a class="prev" href="/post/2018/12/09/jvm-gc-optimization/">
358+
<i class="iconfont icon-left"></i>
359+
<span class="prev-text nav-default">2018 12 09 Jvm Gc Optimization</span>
360+
<span class="prev-text nav-mobile">上一篇</span>
361+
</a>
352362

353363
<a class="next" href="/post/2017/10/27/bio-vs-nio-vs-aio/">
354364
<span class="next-text nav-default">BIO vs NIO vs AIO</span>

0 commit comments

Comments
 (0)