<?xml version="1.0" encoding="UTF-8" ?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ja">
  <title>Postgres Plus ユーザーサイト</title>
  <link rel="alternate" type="text/html" href="http://postgres.sios.com" />
  <link rel="self" type="application/atom+xml" href="http://postgres.sios.com/modules/whatsnew/atom.php" />
  <id>tag:postgres.sios.com,2012://1</id>
  <updated>2012-02-08T22:44:03+09:00</updated>
      <generator uri="http://linux2.ohwada.net/">XOOPS Whatsnew</generator>
        <rights>Copyright (c) 2012, サイオステクノロジー株式会社</rights>
    <author>
  <name>サイオステクノロジー株式会社</name>
        <email>pp-usersite@sios.com</email>
    </author>
  <entry>
  <title type="html">GIN (Generalized Inverted Index) インデックスとは何ですか？</title>
  <link rel="alternate" type="text/html" href="http://postgres.sios.com/modules/newbb/viewtopic.php?forum=1&amp;topic_id=144&amp;post_id=145#forumpost145" />
  <id>tag:postgres.sios.com,2012://1.39.145</id>
  <updated>2012-02-08T16:58:53+09:00</updated>
      <published>2012-02-08T16:58:53+09:00</published>
        <category term="FAQ" /> 
    <author>
  <name>admin</name>
      </author>
      <summary type="html">PostgreSQL では、B-tree, Hash, GiST, Gin など、いくつかのインデックスを使用する事ができます。全文検索を高速化させる為のインデックスは、GIN と GIST インデックスの 2種類があります。全文検索では必ずしもインデックスの使用が必須ではありませんが、ディスク上の多くのデータを読み込んで検索結果を返すには非常に長い時間が掛かります。その為、日常的な検索ではイ ...</summary>
        <content type="html"> <![CDATA[
    PostgreSQL では、B-tree, Hash, GiST, Gin など、いくつかのインデックスを使用する事ができます。<br />全文検索を高速化させる為のインデックスは、GIN と GIST インデックスの 2種類があります。<br />全文検索では必ずしもインデックスの使用が必須ではありませんが、ディスク上の多くのデータを読み込んで検索結果を返すには非常に長い時間が掛かります。その為、日常的な検索ではインデックスを使用する方が望ましいと考えられます。以下に GiST, GIN インデックスの作成例を示します。<br /><br /> (書式)<br />  CREATE INDEX [インデックス名] ON [テーブル名] USING gist(カラム名);<br />  * GiST (Generalized Search Tree) のインデックスは、tsvector または tsquery 型になります。<br />  <br /> (実行例)<br />  # CREATE INDEX gist_idx ON sometable USING gist(sid);<br /><br /><br />  CREATE INDEX [インデックス名] ON [テーブル名] USING gin(カラム名);<br />  * GIN インデックスの作成は、テキストから変換した tsvector 型のデータに対して行う必要があります。<br />    テキストから tsvector 型にデータを変換するには to_tsvector 関数を使用します。<br />    <br /><br /> (実行例)<br />  # CREATE INDEX gin_idx ON exp_table USING gin(to_tsvector('japanese',filler));<br />  * カラムを tsvector 型に変換する為に、上記の実行例では to_tsvector() を使用しています。<br />     to_tsvector() の使用方法は、別途関連ドキュメントを参照ください。<br /><br /><br /> 2つのインデックス形式には大きな性能差がある為、どちらを使うべきか理解する事は非常に重要です。<br /><br />GiST インデックスはインデックスデータを固定長で表現・保持する仕組みである為、不必要な情報を排除した非可逆なデータとなります。これは、誤った検索結果を返す可能性があります。その為、テーブル行の再チェックが必要になりますが、PostgreSQL ではこの結果の再チェックを自動的に行ないます。<br /><br />GIN インデックスは非可逆なデータではありませんが、パフォーマンスはユニークな単語の数に依存します。また、GIN インデックスは tsvector 型のデータ(テキストから抽出した文字列とその位置情報を持つデータ)のみを保持し、重み付けのラベル(ランク)情報は有しません。<br /><br />GiST と GIN インデックスの使用の選択については、下記の違いを考慮して選択ください。<br /><br />  - GIN インデックスは、GiST よりも約 3倍早く検索します。<br />  - GIN インデックスの構築・作成は、GiST よりも約 3倍の時間が掛かります。<br />  - GIN インデックスの更新は、GiST よりも約 10倍遅いです。<br />  - GIN インデックスは、GiST よりも 2～3倍大きくなります。<br /><br />経験則では、GIN インデックスは高速に検索ができるので、静的なデータに最適です。動的なデータにおいては、GiST インデックスの方が更新が早いです。具体的に言えば、GiST インデックスは動的なデータか、100,000 に満たないユニークな単語数においては高速です。GIN インデックスは 100,000 以上の語彙素において有効ですが、更新は遅いという事が言えます。<br /><br />GIN インデックスの構築・作成は、maintenance_work_mem を増やすと多くの場合改善されますが、GiST インデックスの構築・作成にはあまり効果がない事にご注意ください。<br /><br />参考:<br />12.9. GiST and GIN Index Types<br /><a href="http://www.enterprisedb.com/docs/en/9.1/pg/textsearch-indexes.html" target="_blank">http://www.enterprisedb.com/docs/en/9.1/pg/textsearch-indexes.html</a>
    ]]> </content>
    </entry>
  <entry>
  <title type="html">Postgres Plus Solution Pack v9.1 リリースノート</title>
  <link rel="alternate" type="text/html" href="http://postgres.sios.com/" />
  <id>tag:postgres.sios.com,2012://1.19.25</id>
  <updated>2012-02-03T15:58:35+09:00</updated>
      <published>2012-02-03T15:58:35+09:00</published>
        <category term="ソフトウェアダウンロード" /> 
    <author>
  <name>サイオステクノロジー株式会社</name>
      </author>
      <summary type="html">Postgres Plus Solution Pack v9.1 リリースノート</summary>
      </entry>
  <entry>
  <title type="html">【お知らせ】 Postgres Plus Solution Pack v9.1 (ver. 9.1.2-1) をリリースしました</title>
  <link rel="alternate" type="text/html" href="http://postgres.sios.com/modules/news/article.php?storyid=42" />
  <id>tag:postgres.sios.com,2012://1.12.42</id>
  <updated>2012-02-03T15:47:56+09:00</updated>
      <published>2012-02-03T15:47:56+09:00</published>
        <category term="ニュース" /> 
    <author>
  <name>j310</name>
      </author>
      <summary type="html">Postgres Plus Solution Pack v9.1 がリリースされました。PostgreSQL (includes StackBuilder) をインストール後、StackBuilder にて &quot;Registration Required and Trial Products&quot; を導入頂くことで Solution Pack をご利用頂けます。PostgreSQL v9.1.2-1 は v9.0 では非同期のみだったレプリケーションに同期モードの追加や、トランザクションログ(WAL)を生成しない事で処理の高速化を行える新たな UNLOGGED TABLE テーブル ...</summary>
        <content type="html"> <![CDATA[
    Postgres Plus Solution Pack v9.1 がリリースされました。<br /><br />PostgreSQL (includes StackBuilder) をインストール後、StackBuilder にて "Registration Required and Trial Products" を導入頂くことで Solution Pack をご利用頂けます。<br /><br />PostgreSQL v9.1.2-1 は v9.0 では非同期のみだったレプリケーションに同期モードの追加や、トランザクションログ(WAL)を生成しない事で処理の高速化を行える新たな UNLOGGED TABLE テーブルタイプの追加等がなされております。<br /><br />* Allow synchronous replication<br />* Add support for foreign tables<br />* Add per-column collation support<br />* Add extensions which simplify packaging of additions to PostgreSQL<br />* Add a true serializable isolation level<br />* Support unlogged tables using the UNLOGGED option in CREATE TABLE<br />* Allow data-modification commands (INSERT/UPDATE/DELETE) in WITH clauses<br />* Add nearest-neighbor (order-by-operator) searching to GiST indexes<br />* Add a SECURITY LABEL command and support for SELinux permissions control<br />* Update the PL/Python server-side language <br /><br />ソフトウェアダウンロードからダウンロードが可能です。<br /><br />
    ]]> </content>
    </entry>
  <entry>
  <title type="html">Postgres Plus Solution Pack v9.1 for Windows 64 ビット</title>
  <link rel="alternate" type="text/html" href="http://postgres.sios.com/" />
  <id>tag:postgres.sios.com,2012://1.19.24</id>
  <updated>2012-02-03T14:57:51+09:00</updated>
      <published>2012-02-03T14:57:51+09:00</published>
        <category term="ソフトウェアダウンロード" /> 
    <author>
  <name>サイオステクノロジー株式会社</name>
      </author>
      <summary type="html">Postgres Plus Solution Pack v9.1 for Windows 64 ビット</summary>
      </entry>
  <entry>
  <title type="html">Postgres Plus Solution Pack v9.1 for Windows 32 ビット</title>
  <link rel="alternate" type="text/html" href="http://postgres.sios.com/" />
  <id>tag:postgres.sios.com,2012://1.19.23</id>
  <updated>2012-02-03T14:56:53+09:00</updated>
      <published>2012-02-03T14:56:53+09:00</published>
        <category term="ソフトウェアダウンロード" /> 
    <author>
  <name>サイオステクノロジー株式会社</name>
      </author>
      <summary type="html">Postgres Plus Solution Pack v9.1 for Windows 32 ビット</summary>
      </entry>
  <entry>
  <title type="html">Postgres Plus Solution Pack v9.1 for Linux 64 ビット</title>
  <link rel="alternate" type="text/html" href="http://postgres.sios.com/" />
  <id>tag:postgres.sios.com,2012://1.19.22</id>
  <updated>2012-02-03T14:55:38+09:00</updated>
      <published>2012-02-03T14:55:38+09:00</published>
        <category term="ソフトウェアダウンロード" /> 
    <author>
  <name>サイオステクノロジー株式会社</name>
      </author>
      <summary type="html">Postgres Plus Solution Pack v9.1 for Linux 64 ビット</summary>
      </entry>
  <entry>
  <title type="html">Postgres Plus Solution Pack v9.1 for Linux 32 ビット</title>
  <link rel="alternate" type="text/html" href="http://postgres.sios.com/" />
  <id>tag:postgres.sios.com,2012://1.19.21</id>
  <updated>2012-02-03T14:53:54+09:00</updated>
      <published>2012-02-03T14:53:54+09:00</published>
        <category term="ソフトウェアダウンロード" /> 
    <author>
  <name>サイオステクノロジー株式会社</name>
      </author>
      <summary type="html">Postgres Plus Solution Pack v9.1 for Linux 32 ビット</summary>
      </entry>
  <entry>
  <title type="html">Postgres Plus は、Perl ドライバーをサポートしますか。</title>
  <link rel="alternate" type="text/html" href="http://postgres.sios.com/modules/newbb/viewtopic.php?forum=1&amp;topic_id=143&amp;post_id=144#forumpost144" />
  <id>tag:postgres.sios.com,2012://1.39.144</id>
  <updated>2012-01-16T21:11:23+09:00</updated>
      <published>2012-01-16T21:11:23+09:00</published>
        <category term="FAQ" /> 
    <author>
  <name>admin</name>
      </author>
      <summary type="html">はい、OUT/INOUT パラメータのストアドプロシージャを呼び出すケース以外については、PostgreSQL ドライバーは機能します。OUT/INOUT パラメータのストアドプロシージャを呼び出す場合は、ODBC ドライバーを使用する事ができます。</summary>
        <content type="html"> <![CDATA[
    はい、OUT/INOUT パラメータのストアドプロシージャを呼び出すケース以外については、PostgreSQL ドライバーは機能します。OUT/INOUT パラメータのストアドプロシージャを呼び出す場合は、ODBC ドライバーを使用する事ができます。
    ]]> </content>
    </entry>
  <entry>
  <title type="html">Postgres Plus は、Ruby をサポートしますか。</title>
  <link rel="alternate" type="text/html" href="http://postgres.sios.com/modules/newbb/viewtopic.php?forum=1&amp;topic_id=142&amp;post_id=143#forumpost143" />
  <id>tag:postgres.sios.com,2012://1.39.143</id>
  <updated>2012-01-16T21:10:52+09:00</updated>
      <published>2012-01-16T21:10:52+09:00</published>
        <category term="FAQ" /> 
    <author>
  <name>admin</name>
      </author>
      <summary type="html">はい、サポートします。PostgreSQL ドライバーを介してサポートします。</summary>
        <content type="html"> <![CDATA[
    はい、サポートします。PostgreSQL ドライバーを介してサポートします。
    ]]> </content>
    </entry>
  <entry>
  <title type="html">Postgres Plus は、コネクションプーリングをサポートしますか。</title>
  <link rel="alternate" type="text/html" href="http://postgres.sios.com/modules/newbb/viewtopic.php?forum=1&amp;topic_id=141&amp;post_id=142#forumpost142" />
  <id>tag:postgres.sios.com,2012://1.39.142</id>
  <updated>2012-01-16T21:10:24+09:00</updated>
      <published>2012-01-16T21:10:24+09:00</published>
        <category term="FAQ" /> 
    <author>
  <name>admin</name>
      </author>
      <summary type="html">はい、サポートします。pgpool を通して接続のプーリングやキャッシュの機能を提供します。</summary>
        <content type="html"> <![CDATA[
    はい、サポートします。pgpool を通して接続のプーリングやキャッシュの機能を提供します。
    ]]> </content>
    </entry>
  <entry>
  <title type="html">Postgres Plus は、どのような隔離レベルをサポートしますか。</title>
  <link rel="alternate" type="text/html" href="http://postgres.sios.com/modules/newbb/viewtopic.php?forum=1&amp;topic_id=140&amp;post_id=141#forumpost141" />
  <id>tag:postgres.sios.com,2012://1.39.141</id>
  <updated>2012-01-16T21:10:05+09:00</updated>
      <published>2012-01-16T21:10:05+09:00</published>
        <category term="FAQ" /> 
    <author>
  <name>admin</name>
      </author>
      <summary type="html">Postgres Plus は、デフォルトで Read Committed が設定されています。Repeatable read や Serializable 隔離レベルもサポートします。</summary>
        <content type="html"> <![CDATA[
    Postgres Plus は、デフォルトで Read Committed が設定されています。Repeatable read や Serializable 隔離レベルもサポートします。
    ]]> </content>
    </entry>
  <entry>
  <title type="html">【お知らせ】 Think IT への PostgreSQL ストリーミング・レプリケーションに関する記事掲載</title>
  <link rel="alternate" type="text/html" href="http://postgres.sios.com/modules/news/article.php?storyid=40" />
  <id>tag:postgres.sios.com,2012://1.12.40</id>
  <updated>2011-11-07T15:46:52+09:00</updated>
      <published>2011-11-07T15:46:52+09:00</published>
        <category term="ニュース" /> 
    <author>
  <name>knaka</name>
      </author>
      <summary type="html">当社において Postgres Plus の支援業務にたずさわるエンジニアによる寄稿記事が、株式会社インプレスビジネスメディアによるソフトウェア・エンジニア向け情報サイト Think IT に掲載されました。連載: PostgreSQLとストリーミング・レプリケーション第1回 ストリーミング・レプリケーションの紹介第2回 レプリケーションの諸機能と、同期接続第3回 高可用性クラスタへの応 ...</summary>
        <content type="html"> <![CDATA[
    当社において Postgres Plus の支援業務にたずさわるエンジニアによる寄稿記事が、株式会社インプレスビジネスメディアによるソフトウェア・エンジニア向け情報サイト <a href=http://thinkit.co.jp/>Think IT</a> に掲載されました。<br /><br /><a href="http://thinkit.co.jp/book/2011/10/20/2309">連載: PostgreSQLとストリーミング・レプリケーション<br /><br /><ul><br /><li><a href=http://thinkit.co.jp/story/2011/10/20/2310>第1回 ストリーミング・レプリケーションの紹介</a><br /><li><a href=http://thinkit.co.jp/story/2011/10/27/2319>第2回 レプリケーションの諸機能と、同期接続</a><br /><li><a href=http://thinkit.co.jp/story/2011/11/02/2324>第3回 高可用性クラスタへの応用</a><br /></ul><br /><br />上記のとおり、全 3 回の連載となっております。ぜひ参考にしていただければと思います。<br />
    ]]> </content>
    </entry>
  <entry>
  <title type="html">【お知らせ】 Postgres Plus製品情報サイトをリニューアルオープンしました</title>
  <link rel="alternate" type="text/html" href="http://postgres.sios.com/modules/news/article.php?storyid=39" />
  <id>tag:postgres.sios.com,2012://1.12.39</id>
  <updated>2011-07-13T09:15:18+09:00</updated>
      <published>2011-07-13T09:15:18+09:00</published>
        <category term="ニュース" /> 
    <author>
  <name>kurosaka</name>
      </author>
      <summary type="html">【お知らせ】 Postgres Plus製品情報サイトをリニューアルオープンしました</summary>
      </entry>
  <entry>
  <title type="html">【導入事例】 NTTグループ様のOSS活用事例を公開しました</title>
  <link rel="alternate" type="text/html" href="http://postgres.sios.com/modules/news/article.php?storyid=38" />
  <id>tag:postgres.sios.com,2012://1.12.38</id>
  <updated>2011-07-13T09:06:50+09:00</updated>
      <published>2011-07-13T09:06:50+09:00</published>
        <category term="ニュース" /> 
    <author>
  <name>kurosaka</name>
      </author>
      <summary type="html">【OSS最新事例】 NTTグループ、OSSを活用し社内システムのTCO削減を実現！</summary>
        <content type="html"> <![CDATA[
    【OSS最新事例】　NTTグループ、OSSを活用し社内システムのTCO削減を実現！<br />
    ]]> </content>
    </entry>
  <entry>
  <title type="html">【セミナー】 オープンソースサミット 2011 Spring  「次世代IT戦略としてのOSS活用成功事例」　(2011年5月26日)</title>
  <link rel="alternate" type="text/html" href="http://postgres.sios.com/modules/news/article.php?storyid=37" />
  <id>tag:postgres.sios.com,2012://1.12.37</id>
  <updated>2011-05-27T11:18:25+09:00</updated>
      <published>2011-05-27T11:18:25+09:00</published>
        <category term="ニュース" /> 
    <author>
  <name>kurosaka</name>
      </author>
      <summary type="html">！満員御礼！数多くの皆様のご参加、誠に有難うございます。本カンファレンスがメディアに取り上げられました。サイオステクノロジー、OSSの総合イベント「オープンソースサミット開催」、レッドハットが協賛</summary>
        <content type="html"> <![CDATA[
    <center><b><span style="font-size: large;"><span style="color: #CC6600;">！満員御礼！</span></span></b><br />数多くの皆様のご参加、誠に有難うございます。<br /><br /><i><b>本カンファレンスがメディアに取り上げられました。<br /><a href="http://biz.bcnranking.jp/article/news/1105/110526_126514.html" target="_blank">サイオステクノロジー、OSSの総合イベント「オープンソースサミット開催」、レッドハットが協賛</a></b></i></center>
    ]]> </content>
    </entry>
  <entry>
  <title type="html">GridSQL インポートおよびエクスポート ユーティリティ（日本語）</title>
  <link rel="alternate" type="text/html" href="http://postgres.sios.com/" />
  <id>tag:postgres.sios.com,2012://1.38.23</id>
  <updated>2010-06-02T12:18:44+09:00</updated>
      <published>2010-06-02T12:18:44+09:00</published>
        <category term="製品マニュアル" /> 
    <author>
  <name>サイオステクノロジー株式会社</name>
      </author>
      <summary type="html">GridSQL インポートおよびエクスポート ユーティリティ（日本語）</summary>
      </entry>
  <entry>
  <title type="html">Replication Server コマンドライン インターフェイス使用ガイド（日本語）</title>
  <link rel="alternate" type="text/html" href="http://postgres.sios.com/" />
  <id>tag:postgres.sios.com,2012://1.38.22</id>
  <updated>2010-06-02T12:18:10+09:00</updated>
      <published>2010-06-02T12:18:10+09:00</published>
        <category term="製品マニュアル" /> 
    <author>
  <name>サイオステクノロジー株式会社</name>
      </author>
      <summary type="html">Replication Server コマンドライン インターフェイス使用ガイド（日本語）</summary>
      </entry>
  <entry>
  <title type="html">GridSQL 補足管理ガイド（日本語）</title>
  <link rel="alternate" type="text/html" href="http://postgres.sios.com/" />
  <id>tag:postgres.sios.com,2012://1.38.21</id>
  <updated>2010-06-02T12:12:32+09:00</updated>
      <published>2010-06-02T12:12:32+09:00</published>
        <category term="製品マニュアル" /> 
    <author>
  <name>サイオステクノロジー株式会社</name>
      </author>
      <summary type="html">GridSQL 補足管理ガイド（日本語）</summary>
      </entry>
  <entry>
  <title type="html">GridSQL SQLリファレンス（日本語）</title>
  <link rel="alternate" type="text/html" href="http://postgres.sios.com/" />
  <id>tag:postgres.sios.com,2012://1.38.20</id>
  <updated>2010-06-02T12:11:52+09:00</updated>
      <published>2010-06-02T12:11:52+09:00</published>
        <category term="製品マニュアル" /> 
    <author>
  <name>サイオステクノロジー株式会社</name>
      </author>
      <summary type="html">GridSQL SQLリファレンス（日本語）</summary>
      </entry>
  <entry>
  <title type="html">GridSQL 計画ガイド（日本語）</title>
  <link rel="alternate" type="text/html" href="http://postgres.sios.com/" />
  <id>tag:postgres.sios.com,2012://1.38.19</id>
  <updated>2010-06-02T12:11:12+09:00</updated>
      <published>2010-06-02T12:11:12+09:00</published>
        <category term="製品マニュアル" /> 
    <author>
  <name>サイオステクノロジー株式会社</name>
      </author>
      <summary type="html">GridSQL 計画ガイド（日本語）</summary>
      </entry>
</feed>
