view sigos.tex @ 0:6e8b3ae59b5d

fix
author tatsuki
date Thu, 07 May 2015 14:21:15 +0900
parents
children d6b62893378f
line wrap: on
line source

\documentclass[techrep]{ipsjpapers}
\usepackage[dvipdfmx]{graphicx}
\usepackage{url}

\input{dummy.tex} %% Font 

% ユーザが定義したマクロなど.
\makeatletter

\begin{document}

% 和文表題
\title{非破壊的木構造データベースJungleとその評価}
% 英文表題

\etitle{Evaluetion of Non Destractive Tree structured DataBase Jungle}

% 所属ラベルの定義
\affilabel{1}{琉球大学理工学研究科情報工学専攻 \\Interdisciplinary Infomation Engineering, Graduate School of Engineering and Science, University of the Ryukyus.}
\affilabel{2}{琉球大学工学部情報工学科\\Infomation Engineering, University of the Ryukyus.}

% 和文著者名
\author{
  金川 竜己\affiref{1}\and
  河野 真治\affiref{2}
}

% 英文著者名
\eauthor{
  Tatsuki KANAGAWA\affiref{1}\and
  Shinji KONO\affiref{2}
}
% 連絡先(投稿時に必要.製版用では無視される.)
\contact{金川 竜己\\
        〒903-0213 沖縄県西原町千原1番地\\
	琉球大学工学部情報工学科\\
        TEL: (098)895-2221\qquad FAX: (098)895-8727\\
        email: tatsuki.kanagawa@cr.ie.u-ryukyu.ac.jp} 

% 和文概要
\begin{abstract}
我々が扱っている知識は、書籍や組織情報など木構造であることが多い。
しかしRDBは木構造をそのまま格納するのには向いていない。
そこで当研究では、非破壊的木構造データベースJungleを提案している。
Jungleは、属性名と属性値の組と持つNodeを持ち、Nodeは子ノードのリストを持ち、木構造を構成する。
名前を持つ複数の木の集合がJungleDBとなる。
Jungleのトランザクションは名前と木の結合をアトミックに書き換えることで実現される。
この時に元の木を変更しない特徴がある。
これにより、書き込みと読み込みの並行実行を確保している。
Jungle上に業務用許認可システムmaTrixを構築し、性能評価を行った
\end{abstract}

\begin{eabstract}

The nowledge we use in many are is usually represented in tree structures, such as books  or structure of organization.
The relational databas has flat table  structure, which is not  suitable store present the tree structures.
So we introduce jungle dabase, which has  non destructive tree structure.

Jungle database has nodes which have dictionary of at true name and its value. A node has children it has. 
A set of named tree is a  Jungle database.
transaction of jungle is  atomic replace of name binding of the tree.
Previos tree  is preserved in the transaction.
Since transactions preserved old tree, read and write runs safely in parallel.
make an application of authorization of resouce in an organization.
Compare of Jungle and Mongo DBs is  also Performance.

 
\end{eabstract}

% 表題などの出力
\maketitle

% 本文はここから始まる

\input{introduction}   % 研究目的
\input{maTrix}         % maTrix
\input{jungle}         % Jungleの説明 
\input{jungleOnmaTrix}
\input{jungleNewApi}
\input{TreeMap}
\input{ benchmark}        % JungleNetwork
\input{conclusion}
\nocite{shoshi:os}
\nocite{oshiro:os}
\nocite{xacml}
\nocite{mongo}
\bibliographystyle{ipsjunsrt}
\bibliography{sigos}
%\bibliography{cerium,book}
%\input{bibliography}   % 参考文献


\end{document}