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).
- Host: GitHub
- URL: https://github.com/heavenshell/p5-net-okuyama
- Owner: heavenshell
- Created: 2011-05-08T08:06:34.000Z (about 15 years ago)
- Default Branch: master
- Last Pushed: 2011-05-13T17:42:01.000Z (about 15 years ago)
- Last Synced: 2025-09-24T06:31:46.713Z (9 months ago)
- Language: Perl
- Homepage:
- Size: 97.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.mkdn
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.