-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
310 lines (200 loc) · 9.42 KB
/
index.html
File metadata and controls
310 lines (200 loc) · 9.42 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>FlashSQL 기술 블로그</title>
<meta name="description" content="">
<meta name="author" content="FlashSQL">
<meta name="copyright" content="© FlashSQL 2019">
<!-- External libraries -->
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css">
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.9.0/styles/monokai-sublime.min.css">
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/lightbox2/2.7.1/css/lightbox.css">
<!-- Favicon and other icons (made with http://www.favicon-generator.org/) -->
<link rel="shortcut icon" href="/assets/icons/favicon.ico" type="image/x-icon">
<link rel="icon" href="/assets/icons/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" sizes="57x57" href="/assets/icons/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="/assets/icons/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="/assets/icons/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="/assets/icons/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="/assets/icons/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="/assets/icons/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="/assets/icons/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="/assets/icons/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="/assets/icons/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="/assets/icons/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="/assets/icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="/assets/icons/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="/assets/icons/favicon-16x16.png">
<link rel="manifest" href="/assets/icons/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="/assets/icons/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
<!-- Facebook OGP cards -->
<meta property="og:description" content="" />
<meta property="og:url" content="http://flashsql.github.io" />
<meta property="og:site_name" content="FlashSQL 기술 블로그" />
<meta property="og:title" content="FlashSQL 기술 블로그" />
<meta property="og:type" content="website" />
<meta property="og:image" content="http://flashsql.github.io/assets/vldb_logo.png" />
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="612" />
<meta property="og:image:height" content="605" />
<!-- Site styles -->
<link rel="stylesheet" href="/css/main.css">
<link rel="canonical" href="http://flashsql.github.io/">
<link rel="alternate" type="application/rss+xml" title="FlashSQL 기술 블로그" href="http://flashsql.github.io/feed.xml" />
</head>
<body>
<header class="navigation" role="banner">
<div class="navigation-wrapper">
<a href="/" class="logo">
<img src="/assets/vldb_web_logo.png" alt="FlashSQL 기술 블로그">
</a>
<a href="javascript:void(0)" class="navigation-menu-button" id="js-mobile-menu">
<i class="fa fa-bars"></i>
</a>
<nav role="navigation">
<ul id="js-navigation-menu" class="navigation-menu show">
<li class="nav-link"><a href="/category/mysql/">MySQL</a>
<li class="nav-link"><a href="/category/rocksdb/">RocksDB</a>
<li class="nav-link"><a href="/category/flash/">Flash</a>
</ul>
</nav>
</div>
</header>
<div class="page-content">
<div class="home">
<div class="site-header-container has-cover" style="background-image: url(/assets/header_image.jpg);">
<div class="scrim has-cover">
<header class="site-header">
<h1 class="title">FlashSQL 기술 블로그</h1>
<p class="subtitle">비휘발성 메모리 기반 개방형 고성능 DBMS 개발</p>
</header>
</div>
</div>
<div class="wrapper">
<ul class="post-list">
<li>
<h2>
<a class="post-link" href="/mysql/2018/04/18/test9.html">Punch Hole</a>
</h2>
<section class="post-author">
<i class="fa fa-user"></i>
By <font color="#e74c3c">Mijin An</font>
</section>
<section class="post-excerpt" itemprop="description">
<p>Punch hole 아래 두 자료 참고해서 정리 InnoDB Transparent Page Compression MySQL 5.7 Manual Transparent Page Compression InnoDB는 file-per-table 테이블스페이스에 존재하는 테이블에 대해 페이지 레벨 압축을 지원한다. 이는 Transparent Page Compression 라 불린다. 페이지 압축은 CREATE TABLE 또는 ALTER TABLE 문에 COMPRESSION attribute를 명시하여 사용할 수 있으며, Zlib과 LZ4 압축...</p>
</section>
<section class="post-meta">
<div class="post-date">2018-04-18</div>
<div class="post-categories">
<a href="/category/mysql" class="tag">MySQL</a>
</div>
</section>
</li>
<hr>
<li>
<h2>
<a class="post-link" href="/mysql/flash/2018/04/18/test.html">Test</a>
</h2>
<section class="post-author">
<i class="fa fa-user"></i>
By <font color="#e74c3c">Mijin An</font>
</section>
<section class="post-excerpt" itemprop="description">
<p>Linux 시스템에서 파일 시스템의 블록 크기는 hole punching에 사용되는 단위 크기다. 따라서, 페이지 압축은 InnoDB 페이지 크기 - 파일 시스템 블록 크기보다 작거나 같은 크기로 압축될 수 있는 경우에만 작동한다. 예를 들어, innodb_page_size가 16KB고 파일 시스템 블록 크기가 4KB인 경우, hole punching을 가능하게 하려면 페이지 데이터를 12KB 이하로 압축해야 한다....</p>
</section>
<section class="post-meta">
<div class="post-date">2018-04-18</div>
<div class="post-categories">
<a href="/category/mysql" class="tag">MySQL</a>
<a href="/category/flash" class="tag">Flash</a>
</div>
</section>
</li>
<hr>
<li>
<h2>
<a class="post-link" href="/mysql/rocksdb/2015/04/18/dummy.html">Dummy Post</a>
</h2>
<section class="post-author">
<i class="fa fa-user"></i>
By <font color="#e74c3c">Ben Centra</font>
</section>
<section class="post-excerpt" itemprop="description">
<p>This is just a dummy post. Lorem ipsum and all the rest. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute...</p>
</section>
<section class="post-meta">
<div class="post-date">2015-04-18</div>
<div class="post-categories">
<a href="/category/mysql" class="tag">MySQL</a>
<a href="/category/rocksdb" class="tag">RocksDB</a>
</div>
</section>
</li>
</ul>
<nav class="pagination" role="navigation">
<li class="page-prev">
<i class="fa fa-chevron-left" aria-hidden="true"></i>
</li>
<li class="page-number active">1</li>
<li class="page-next">
<i class="fa fa-chevron-right" aria-hidden="true"></i>
</li>
</nav>
</div>
</div>
</div>
<footer class="site-footer">
<ul class="links">
<li>
<a href="https://github.com/flashsql" title="Fork me on GitHub">
<i class="fa fa-github"></i>
</a>
</li>
<li>
<a href="/feed.xml">
<i class="fa fa-rss"></i>
</a>
</li>
<li>
<a href="mailto:vldb.skku@gmail.com">
<i class="fa fa-envelope-o"></i>
</a>
</li>
</ul>
<ul class="footer-menu">
<li><a href="http://flashsql.skku.ac.kr">FlashSQL</a></li>
<li><a href="http://vldb.skku.edu">VLDB Lab.</a></li>
</ul>
<p class="copyright">
<a href="http://vldb.skku.edu">Copyright Sungkyunkwan University VLDB Lab.</a>
All rights reserved.
</p>
</footer>
<!-- Scripts -->
<script src="//code.jquery.com/jquery-1.11.2.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.5/highlight.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/lightbox2/2.7.1/js/lightbox.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
// Default syntax highlighting
hljs.initHighlightingOnLoad();
// Header
var menuToggle = $('#js-mobile-menu').unbind();
$('#js-navigation-menu').removeClass("show");
menuToggle.on('click', function(e) {
e.preventDefault();
$('#js-navigation-menu').slideToggle(function(){
if($('#js-navigation-menu').is(':hidden')) {
$('#js-navigation-menu').removeAttr('style');
}
});
});
});
</script>
</body>
</html>