Group
Extension

Matches 2

KiokuDB-Backend-Files ( N/NU/NUFFIN/KiokuDB-Backend-Files-0.06.tar.gz, NUFFIN, 2009; MetaCPAN )
KiokuDB-Backend-Files/lib/KiokuDB/Backend/JSPON.pm ( view source; MetaCPAN )

our $VERSION = "0.06";

extends qw(KiokuDB::Backend::Files);

has '+serializer' => ( default => "json" );

__PACKAGE__->meta->make_immutable;

__PACKAGE__

__END__

=pod

=head1 NAME

KiokuDB::Backen
ckend with the serializer default
set to C<json> for backwards compatibility.

L<http://www.jspon.org/|JSPON> is a standard for encoding object graphs in
JSON.

The representation is based on explicit
 ID based references, and so is simple
enough to be stored in JSON.

=cut
KiokuDB-Backend-Files ( N/NU/NUFFIN/KiokuDB-Backend-Files-0.06.tar.gz, NUFFIN, 2009; MetaCPAN )
KiokuDB-Backend-Files/lib/KiokuDB/Backend/Files.pm ( view source; MetaCPAN )
#!/usr/bin/perl

package KiokuDB::Backend::Files;
use Moose;

use Carp qw(croak);

use JSON;

use File::Spec;
use File::Path qw(remove_tree make_path);

use Directory::Transactional;

use Data::Stream

Powered by Groonga
Maintained by Kenichi Ishigaki <ishigaki@cpan.org>. If you find anything, submit it on GitHub.