NAME
KyotoTycoon - KyotoTycoon client library
SYNOPSIS
use KyotoTycoon;
my $kt = KyotoTycoon->new(host => '127.0.0.1', port => 1978);
$kt->set('foo' => bar');
$kt->get('foo'); # => 'bar'
DESCRIPTION
KyotoTycoon.pm is KyotoTycoon client library for Perl5.
THIS MODULE IS IN ITS BETA QUALITY. THE API MAY CHANGE IN THE FUTURE.
ERROR HANDLING POLICY
This module throws exception if got Server Error.
CONSTRUCTOR OPTIONS
- timeout
-
Timeout value for each request in seconds.
Default: 1 second
- host
-
Host name of server machine.
Default: '127.0.0.1'
- port
-
Port number of server process.
Default: 1978
- db
-
DB name or id.
Default: 0
METHODS
- $kt->db()
-
Getter/Setter of DB name/id.
- my $cursor: KyotoTycoon::Cursor = $kt->make_cursor($cursor_number: Int);
-
Create new cursor object. This method returns instance of KyotoTycoon::Cursor.
- my $res = $kt->echo($args)
-
The server returns $args. This method is useful for testing server.
$args is hashref.
Return: the copy of $args.
- $kt->report()
-
Get server report.
Return: server status information in hashref.
- $kt->play_script
-
Not Implemented Yet.
- my $info = $kt->status()
-
Get database status information.
Return: database status information in hashref.
- $kt->clear()
-
Remove all elements for the storage.
Return: Not a useful value.
- $kt->synchronize($hard:Bool, $command);
-
Synchronize database with file system.
$hard: call fsync() or not.
$command: call $command in synchronization state.
Return: 1 if succeeded, 0 if $command returns false.
- $kt->set($key, $value, $xt);
-
Store $value to $key.
$xt: expiration time. If $xt>0, expiration time in seconds from now. If $xt<0, the epoch time. It is never remove if missing $xt.
Return: not a useful value.
- my $ret = $kt->add($key, $value, $xt);
-
Store record. This method is not store if the $key is already in the database.
$xt: expiration time. If $xt>0, expiration time in seconds from now. If $xt<0, the epoch time. It is never remove if missing $xt.
Return: 1 if succeeded. 0 if $key is already in the db.
- my $ret = $kt->replace($key, $value, $xt);
-
Store the record, ignore if the record is not exists in the database.
$xt: expiration time. If $xt>0, expiration time in seconds from now. If $xt<0, the epoch time. It is never remove if missing $xt.
Return: 1 if succeeded. 0 if $key is not exists in the database.
- my $ret = $kt->append($key, $value, $xt);
-
Store the record, append the $value to existent record if already exists entry.
$xt: expiration time. If $xt>0, expiration time in seconds from now. If $xt<0, the epoch time. It is never remove if missing $xt.
Return: not useful value.
- my $ret = $kt->increment($key, $num, $xt);
-
$num: incremental
Return: value after increment.
- my $ret = $kt->increment_double($key, $num, $xt);
-
$num: incremental
Return: value after increment.
- my $ret = $kt->cas($key, $oval, $nval, $xt);
-
compare and swap.
Return: 1 if succeeded, 0 if failed.
- $kt->remove($key);
-
Remove $key from database.
Return 1 if removed, 0 if record does not exists.
- my $val = $kt->get($key);
-
Get $key from database.
Return: the value from database. undef if not exists in database.
- $kt->set_bulk(\%values);
-
Store multiple values in one time.
Return: not useful value.
- $kt->remove_bulk(\@keys);
-
Remove multiple keys in one time.
Return: not useful value.
- my $hashref = $kt->get_bulk(\@keys);
-
Get multiple values in one time.
Return: records in hashref.
AUTHOR
Tokuhiro Matsuno <tokuhirom AAJKLFJEF GMAIL COM>
SEE ALSO
- KyotoTycoon
- http://fallabs.com/mikio/tech/promenade.cgi?id=99
LICENSE
Copyright (C) Tokuhiro Matsuno
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.