The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

FusqlFS::Backend - FusqlFS database backend abstract factory

SYNOPSIS

    use FusqlFS::Backend;

    my $fs = FusqlFS::Backend->new(engine => 'PgSQL', database => 'dbname', user => 'postgres', password => 'pa$$w0rd');

DESCRIPTION

This class is a factory for the family of FusqlFS::Backend::Base subclasses. Its new() method initializes and returns some kind of real backend class instance (FusqlFS::Backend::PgSQL or FusqlFS::Backend::MySQL for now) depending on `engine' option passed to it. If engine is not given or not recognized, it falls back to `PgSQL' backend with a debug message.

You better look at one of underlying classes for detailed description.