An open API service indexing awesome lists of open source software.

https://github.com/heavenshell/p5-net-okuyama

Perl5 client library for Okuyama(Distributed key-value-store).
https://github.com/heavenshell/p5-net-okuyama

Last synced: 9 months ago
JSON representation

Perl5 client library for Okuyama(Distributed key-value-store).

Awesome Lists containing this project

README

          

# NAME

Net::Okuyama - okuyama(Distributed kvs) client library

# SYNOPSIS

use Net::Okuyama;

my $client = Net::Okuyama->new(hosts => 'localhost:8888');
$client->set('foo' => bar');
$client->get('foo'); # => 'bar'
$client->remove('foo'); # remove foo

# DESCRIPTION

Okuyama.pm is [okuyama](http://sourceforge.jp/projects/okuyama/) client library for Perl5.

This module is heavely inspired by [Redis](http://search.cpan.org/perldoc?Redis) and [Cache::KyotoTycoon](http://search.cpan.org/perldoc?Cache::KyotoTycoon).

# AUTHOR

Shinya Ohyanagi

# SEE ALSO

- [okuyama](http://sourceforge.jp/projects/okuyama/)

# LICENSE

Copyright (C) Shinya Ohyanagi

This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.