diff s6/2014_09_02.html @ 5:ab2d529bb1d7

add slide
author Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
date Tue, 14 Oct 2014 19:17:35 +0900
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/s6/2014_09_02.html	Tue Oct 14 19:17:35 2014 +0900
@@ -0,0 +1,144 @@
+<!DOCTYPE html>
+<html>
+  <head>
+    <meta charset='utf-8'>
+    <title>Presen</title>
+
+
+    <!-- style sheet links -->
+    <link rel="stylesheet/less" href="themes/blank/projection.css.less"  media="screen,projection">
+    <link rel="stylesheet/less" href="themes/blank/screen.css.less"      media="screen">
+    <link rel="stylesheet/less" href="themes/blank/print.css.less"       media="print">
+
+    <link rel="stylesheet/less" href="blank.css.less"    media="screen,projection">
+
+    <!-- add js libs (less, jquery) -->
+    <script src="js/less-1.1.4.min.js"></script>
+    <script src="js/jquery-1.7.min.js"></script>
+
+    <!-- S6 JS -->
+    <script src="js/jquery.slideshow.js"></script>
+    <script src="js/jquery.slideshow.counter.js"></script>
+    <script src="js/jquery.slideshow.controls.js"></script>
+    <script src="js/jquery.slideshow.footer.js"></script>
+    <script src="js/jquery.slideshow.autoplay.js"></script>
+    <script>
+      $(document).ready( function() {
+      Slideshow.init();
+      
+      // Example 2: Start Off in Outline Mode
+      // Slideshow.init( { mode: 'outline' } );
+      
+      // Example 3: Use Custom Transition
+      // Slideshow.transition = transitionScrollUp;
+      // Slideshow.init();
+
+      // Example 4: Start Off in Autoplay Mode with Custom Transition
+      // Slideshow.transition = transitionScrollUp;
+      // Slideshow.init( { mode: 'autoplay' } );
+      } );
+    </script>
+
+  </head>
+  <body>
+
+    <div class="layout">
+      <div id="header"></div>
+      <div id="footer">
+        <div align="right">
+          <img src="images/concurrency.png" width="200">
+        </div>
+      </div>
+    </div>
+
+    <div class="presentation">
+
+      <!-- add slides here; example -->
+      
+      <div class='slide cover'>
+        <table width="90%" height="90%" border="0" align="center">
+          <tr>
+            <td><div align="center">
+                <h1><font color="#808db5">Postgres Unstructured</font></h1>
+            </div></td>
+          </tr>
+          <tr>
+            <td><div align="left">
+                Kaito Tokumori
+                <script>
+                  var date = new Date();
+                  var year = date.getFullYear();
+                  var month = date.getMonth();
+                  var day = date.getDate();
+                  
+                  var monthList = new Array("January","February","March","April","May","June",
+                  "July","August","September","October","November","December");
+                  
+                  document.write(monthList[month]+" "+day+", "+year);
+                  
+                </script>
+                <hr style="color:#ffcc00;background-color:#ffcc00;text-align:left;border:none;width:300%;height:0.2em;">
+            </div></td>
+          </tr>
+        </table>
+      </div>
+      
+      <div class='slide'>
+        <h3>Postgres Unstructuerd</h3>
+        <ul>
+          <li>ENTERPRISE DB社によるプレゼンテーションのタイトル。
+          <li>Postgres9.4 beta の紹介。
+        </ul>
+      </div>
+      
+      <div class='slide'>
+        <h3>Install</h3>
+        <ul>
+          <li>installerが存在するのでそれを落として実行するだけ。
+          <li>postgresユーザーの追加、ディレクトリの作成、ポートの指定までinstallerでできる。
+          <li>パスは自分で通す。
+          <li>各種設定は指定したディレクトリ以下にあるpostgresql.confを編集することで可能。
+        </ul>
+      </div>
+
+      <div class='slide'>
+        <h3>Postgres9.4</h3>
+        <ul>
+          <li>jsonb型,jsonb用の演算子の追加。
+          <li>mongoDBのBSON型とは異なるjsonのバイナリ表現。
+        </ul>
+      </div>
+
+      <div class='slide'>
+        <h3>Postgres9.4</h3>
+        <ul>
+          <li>jsonbは内部表現というわけではない。jsonbを使うときはそれを示す必要がある。
+          <li>jsonb型の値を格納するときはjsonからjsonbへの変換が入るのでjsonを格納するよりは遅い。
+          <li>値の検索や各演算子による処理はjsonbの方が圧倒的に速い。
+        </ul>
+      </div>
+
+      <div class='slide'>
+        <h3>Operation for jsonb type</h3>
+        <ul>
+          <li>(jsonb) @&gt; (jsonb) : 左のjsonbが右の値を持つかどうか。
+          <li>(jsonb) @&gt; (jsonb) : 左のjsonbは右のjsonに含まれるかどうか。
+          <li>(jsonb) ? "text" : jsonbが指定した値をキーか要素に持つかどうか。
+          <li>(jsonb) ?| text[] : jsonbが指定した値のうちいずれかをキーか要素に持つかどうか。
+          <li>(jsonb) ?& text[] : jsonbが指定した値の全てをキーか要素に持つかどうか。
+          <li>下の三つはドキュメントによると要素にも反応するようだけど試したところ反応しない…。
+        </ul>
+      </div>
+
+      <div class='slide'>
+        <h3>postgres 9.4<h3>
+        <ul>
+          <li>jsonの持つ値を編集できない。
+          <li>ドキュメントにその項目が無いだけで色々やるとできるみたい。
+          <li>postgresにはHstoreというKVSがもともと存在するがそれとの違い。
+        </ul>
+      </div>
+
+    </div> <!-- presentation -->
+  </body>
+</html>