logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

SQL::Translator::Producer::Storable - serializes the SQL::Translator::Schema

Author

       Paul Harrington <harringp@deshaw.com>.

Description

       This module uses Storable to serialize a schema to a string so that it can be saved to disk.  Serializing
       a schema and then calling producers on the stored can realize significant performance gains when parsing
       takes a long time.

Name

       SQL::Translator::Producer::Storable - serializes the SQL::Translator::Schema
           object via the Storable module

See Also

       SQL::Translator, SQL::Translator::Schema, Storable.

perl v5.40.0                                       2024-11-23              SQL::Translato...ducer::Storable(3pm)

Synopsis

         use SQL::Translator;

         my $translator = SQL::Translator->new;
         $translator->producer('Storable');

See Also