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

package Prophet;

our $VERSION = '0.69_01';

=head1 NAME

Prophet

=head1 DESCRIPTION

Prophet is a distributed database system designed for small to medium scale database applications (currently up to around 50,000 records of a given type).
Our early targets include things such as bug tracking.

=head2 Design goals

=head3 Arbitrary record schema

=head3 Replication

=head3 Disconnected operation

=head3 Peer to peer synchronization



=head2 Design constraints

=head3 Scaling

We don't currently intend for the first implementation of Prophet to scale to databases with millions of rows or hundreds of concurrent users. There's nothing that makes the design infeasible, but the infrastructure necessary for such a system will...needlessly hamstring it.

=cut

1;