module SampleModule
 def square(n)
   n * n
 end
end

class SampleClass
 include SampleModule
 # 略
end

o = SampleClass.new
p o.square(3) #=> 9


module SampleModule
 def square(n)
   n * n
 end
end

class SampleClass ;end

o = SampleClass.new
o1 = SampleClass.new

o.extend SampleModule
p o.square(3) #=> 9
p o1.square(3) #=> NameError

■構文

module モジュール名
end

■例

module SampleModule
 def square(n)
   n * n
 end
end


MySQL Clusterのインストール


管理ノードにインストールするソフトウェア

Cluster Management Utilities(MySQL-Cluster-gpl-management-7.1.10-1.rhel5.i386.rpm)
# wget http://ftp.iij.ad.jp/pub/db/mysql/Downloads/MySQL-Cluster-7.1/MySQL-Cluster-gpl-management-7.1.10-1.rhel5.i386.rpm
# rpm -ivh MySQL-Cluster-gpl-management-7.1.10-1.rhel5.i386.rpm

Cluster Tools
# wget http://ftp.iij.ad.jp/pub/db/mysql/Downloads/MySQL-Cluster-7.1/MySQL-Cluster-gpl-tools-7.1.10-1.rhel5.i386.rpm
# rpm -ivh MySQL-Cluster-gpl-tools-7.1.10-1.rhel5.i386.rpm


データノード+SQLノードにインストールするソフトウェア

Client(MySQL-Cluster-gpl-client-7.1.10-1.rhel5.i386.rpm)
# wget http://ftp.jaist.ac.jp/pub/mysql/Downloads/MySQL-Cluster-7.1/MySQL-Cluster-gpl-client-7.1.10-1.rhel5.i386.rpm
# rpm -ivh MySQL-Cluster-gpl-client-7.1.10-1.rhel5.i386.rpm

MySQL Server(MySQL-Cluster-gpl-server-7.1.10-1.rhel5.i386.rpm)
# wget http://ftp.jaist.ac.jp/pub/mysql/Downloads/MySQL-Cluster-7.1/MySQL-Cluster-gpl-server-7.1.10-1.rhel5.i386.rpm
# rpm -ivh MySQL-Cluster-gpl-server-7.1.10-1.rhel5.i386.rpm

Cluster Storage Engines(MySQL-Cluster-gpl-storage-7.1.10-1.rhel5.i386.rpm)
# wget http://ftp.jaist.ac.jp/pub/mysql/Downloads/MySQL-Cluster-7.1/MySQL-Cluster-gpl-storage-7.1.10-1.rhel5.i386.rpm
# rpm -ivh MySQL-Cluster-gpl-storage-7.1.10-1.rhel5.i386.rpm




























最終更新:2011年05月16日 23:26