null+****@clear*****
null+****@clear*****
2011年 9月 27日 (火) 20:40:21 JST
Kouhei Sutou 2011-09-27 11:40:21 +0000 (Tue, 27 Sep 2011) New Revision: 7af8dc93a40f819751f02e798e3f7fd69385593b Log: [doc] move images path. Modified files: doc/ja/Makefile.am doc/ja/source/conf.py doc/ja/source/userguide.rst Renamed files: doc/ja/source/images/storage-mode.png (from doc/ja/source/_static/images/storage-mode.png) doc/ja/source/images/storage-mode.svg (from doc/ja/source/_static/images/storage-mode.svg) doc/ja/source/images/wrapper-mode.png (from doc/ja/source/_static/images/wrapper-mode.png) doc/ja/source/images/wrapper-mode.svg (from doc/ja/source/_static/images/wrapper-mode.svg) Modified: doc/ja/Makefile.am (+4 -4) =================================================================== --- doc/ja/Makefile.am 2011-09-27 11:29:01 +0000 (2c6b9f0) +++ doc/ja/Makefile.am 2011-09-27 11:40:21 +0000 (11bac37) @@ -119,10 +119,10 @@ nobase_dist_doc_ja_DATA = \ # find source -type f -not -name '*.pyc' | sort | sed -e 's,^,\t,g' source_files = \ - source/_static/images/storage-mode.png \ - source/_static/images/storage-mode.svg \ - source/_static/images/wrapper-mode.png \ - source/_static/images/wrapper-mode.svg \ + source/images/storage-mode.png \ + source/images/storage-mode.svg \ + source/images/wrapper-mode.png \ + source/images/wrapper-mode.svg \ source/characteristic.rst \ source/conf.py \ source/developer.rst \ Modified: doc/ja/source/conf.py (+1 -1) =================================================================== --- doc/ja/source/conf.py 2011-09-27 11:29:01 +0000 (85b9e7a) +++ doc/ja/source/conf.py 2011-09-27 11:40:21 +0000 (df325f0) @@ -133,7 +133,7 @@ html_theme_options = { # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". -html_static_path = ['_static'] +#html_static_path = ['_static'] # If not '', a 'Last updated on:' timestamp is inserted at every page bottom, # using the given strftime format. Renamed: doc/ja/source/images/storage-mode.png (+0 -0) 100% =================================================================== Renamed: doc/ja/source/images/storage-mode.svg (+0 -0) 100% =================================================================== Renamed: doc/ja/source/images/wrapper-mode.png (+0 -0) 100% =================================================================== Renamed: doc/ja/source/images/wrapper-mode.svg (+0 -0) 100% =================================================================== Modified: doc/ja/source/userguide.rst (+4 -2) =================================================================== --- doc/ja/source/userguide.rst 2011-09-27 11:29:01 +0000 (57d30ee) +++ doc/ja/source/userguide.rst 2011-09-27 11:40:21 +0000 (cce6bdf) @@ -47,16 +47,18 @@ SHOW ENGINESコマンドでgroongaストレージエンジンがインストー ストレージモードの構成を図で表すと以下のようになります。MyISAMやInnoDBなど既存のストレージエンジンの代わりに利用します。 -.. figure:: _static/images/storage-mode.png +.. figure:: /images/storage-mode.png :alt: ストレージモード + :align: center ラッパーモードでは全文検索機能のみgroongaの機能を利用し、データストアはInnoDBなど既存のストレージエンジンを利用します。ラッパーモードを利用することにより、ストレージエンジンとして多くの利用実績のあるInnoDBに全文検索エンジンとして実績のあるgroongaを組み合わせて、高速な全文検索機能付きの信頼性のあるデータベースとして利用できるという特長があります。 ラッパーモードの構成を図で表すと以下のようになります。全文検索関連の処理はgroongaストレージエンジンで処理し、それ以外の処理はMyISAMやInnoDBなど既存のストレージエンジンを利用します。SQLを処理するSQL Handlerと既存のストレージエンジンの間に位置するため、すべてのデータが一度groongaストレージエンジンを通ることになります。これを利用して、全文検索用のインデックス作成などを透過的に行います。 -.. figure:: _static/images/wrapper-mode.png +.. figure:: /images/wrapper-mode.png :alt: ラッパーモード + :align: center モード毎の利用方法 ------------------