-
-
14 May 2013 06:53:16 UTC
- Distribution: DataStore-CAS-FS
- Source (raw)
- Browse (raw)
- Changes
- How to Contribute
- Issues
- Testers (342 / 39 / 0)
- Kwalitee
Bus factor: 1- 66.63% Coverage
- License: perl_5
- Perl: v5.8.1
- Activity
24 month- Tools
- Download (53.86KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
and 1 contributors-
Michael Conrad
- Dependencies
- Carp
- DataStore::CAS
- Fcntl
- File::Spec
- File::Spec::Functions
- JSON
- Moo
- Scalar::Util
- Socket
- Try::Tiny
- overload
- parent
- strict
- warnings
- and possibly others
- Reverse dependencies
- CPAN Testers List
- Dependency graph
NAME
DataStore::CAS::FS::DirCodec::Minimal - Directory representation with minimal metadata
VERSION
version 0.011000
DESCRIPTION
This class packs a directory as a list of [type, hash, filename], which is very efficient, but omits metadata that you often would want in a backup.
This is primarily intended for making small frequent backups inbetween more thorough nightly backups.
METHODS
encode
$serialized= $class->encode( \@entries, \%metadata )
Serialize the given entries into a scalar.
Serialize the bare minimum fields of each entry. Each entry will have 3 pieces of data saved: type, name, and ref.
The
%metadata
is encoded using JSON, which isn't very compact, but if you really want a minimal encoding you shouldn't supply metadata anyway.decode
$dir= $class->decode( %params )
Reverses
encode
, to create a Dir object.See DirCodec->load for details on
%params
.AUTHOR
Michael Conrad <mconrad@intellitree.com>
COPYRIGHT AND LICENSE
This software is copyright (c) 2013 by Michael Conrad, and IntelliTree Solutions llc.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
Module Install Instructions
To install DataStore::CAS::FS, copy and paste the appropriate command in to your terminal.
cpanm DataStore::CAS::FS
perl -MCPAN -e shell install DataStore::CAS::FS
For more information on module installation, please visit the detailed CPAN module installation guide.