t-cyrill/rpc-kyoto-tycoon

Lightweight RPC KyotoTycoon client

dev-master 2014-03-06 05:59 UTC

This package is not auto-updated.

Last update: 2024-04-22 09:34:34 UTC


README

RPCKyotoTycoon is a lightweight PHP 5.3 library for issuing Http RPC KyotoTycoon requests.

Installation

Download the composer.phar.

$ curl -s http://getcomposer.org/installer | php

Run Composer: php composer.phar install

Usage

<?php

$kt = new RPCKyotoTycoon(
    array(
        'host'    => 'localhost',
        'port'    => 1978,
        'db'      => 'casket.kct',
        'timeout' => array(10, 0)
    )
);
echo $kt->get('key');