Javaクライアントを使ったLeoFSのクイックスタート

July 28, 2014

はじめに

この文章で開発の仕方やLeoFSのJava-clientアプリケーションの構造について知ることができるでしょう。この文章は既にLeoFS環境がローカルあるいはリモートノードにインストールされていることを仮定しています。更に詳しい情報はLeoFSを開始する を見てください。

インストレーションとS3 Java-clientのセットアップ

マシーンにJavaをインストールする一番簡単な方法は、yumあるいはaptパッケージインストーラを使うことです。そして更にApache Antが必要です。

更には

楽天でのソフトウェア開発

Ruby-clientを使ったLeoFSのクイックスタート

June 25, 2014

はじめに

この文章で開発の仕方やLeoFSのRubyアプリケーションの構造について知ることができるでしょう。この文章は既にLeoFS環境がローカルあるいはリモートノードにインストールされていることを仮定しています。更に詳しい情報はLeoFSを開始する を見てください。

インストレーションとS3 Ruby-clientのセットアップ

マシーンにRubyをインストールする一番簡単な方法は、yumパッケージインストーラを使うことです。そして更にRubyに依存するものが必要です。

更には

楽天でのソフトウェア開発

PHPクライアントを使ったLeoFSのクイックスタート

May 22, 2014

はじめに

This article will get you going with a PHP-client application how to develop and architect applications for LeoFS. この文章は既にLeoFS環境がローカルあるいはリモートノードにインストールされていることを仮定しています。更に詳しい情報はLeoFSを開始する を見てください。

Installation & Setup PHP-client

CentOS, Fedora & RHEL:

##### Install PHP, SDK and Dependencies #####
$ sudo yum install php
$ php –v

Debian & Ubuntu based Installation

##### Install PHP, SDK and Dependencies #####
$ sudo apt-get install php5 php5-json php5-curl
$ php –v
###### Download Sample Project #####
$ git clone https://github.com/leo-project/leofs_client_tests.git
$ cd aws-sdk-php
$ curl -sS https://getcomposer.org/installer | php
$ sudo php composer.phar install

About the Sample

This sample application is designed to show you how to:

  • Declare a dependency on the AWS SDK for PHP using Composer.
  • Read access keys from environment variables or define it statically in this sample we are using static entry.
  • Instantiate an Amazon Simple Storage Service (Amazon S3) client.
  • Interact with Amazon S3 in various ways, such as creating a bucket and uploading a file.

The project's README file contains more information about this sample code. If you have trouble getting set up or have other feedback about this sample codes, let us know on GitHub.

API Feature List

The storage API is compatible with the Amazon S3 REST API which means that any of the operations listed can be executed using any of the commonly available S3 libraries or tools.

更には

楽天でのソフトウェア開発
TOP
inserted by FC2 system