Rscs
NAME
DB::Rscs - A client library for Rscs (https://github.com/bradclawsie/rscs)
DESCRIPTION
Rscs (the Ridiculously Simple Configuration System) is a simple configuration database with http daemon support. Rscs only stores keys and values and only allows simple CRUD operations.
This library is a Perl6 client for Rscs.
SYNOPSIS
use v6; use DB::Rscs;
my $rscs = DB::Rscs.new(addr=>'http://localhost:8081'); my $val = 'val1'; my $key = 'key1'; $rscs.insert($key,$val); my %out = $rscs.get($key); say %out{$VALUE_KEY}; $rscs.update($key,'a new val'); $rscs.delete($key);
AUTHOR
Brad Clawsie (PAUSE:bradclawsie, email:[email protected])
LICENSE
This module is licensed under the BSD license, see: https://b7j0c.org/stuff/license.txt