|
NAMEHailo::Storage::SQLite - A storage backend for Hailo using DBD::SQLiteSYNOPSISAs a module:my $hailo = Hailo->new( storage_class => 'SQLite', ); $hailo->train("hailo.trn"); From the command line: hailo --train hailo.trn --storage SQLite See Hailo's documentation for other non-MySQL specific options. DESCRIPTIONThis backend maintains information in an SQLite database. It is the default storage backend.ATTRIBUTES"storage_args"This is a hash reference which can have the following keys:"pragma_*" Any option starting with 'pragma_' will be considered to be an SQLite pragma <http://www.sqlite.org/pragma.html> which will be set after we connect to the database. An example of this would be storage_args => { pragma_cache_size => 10000, pragma_synchronous => 'OFF', } Setting 'pragma_cache_size' in particular can be beneficial. It's the size of the page cache used by SQLite. See SQLite's documentation <http://www.sqlite.org/pragma.html#pragma_cache_size> for more information. Increasing it might speed up Hailo, especially when disk IO is slow on your machine. Obviously, you shouldn't bother with this option if 'in_memory' is enabled. Setting 'pragma_synchronous' to 'OFF' or 'pragma_journal_mode' to 'OFF' will speed up operations at the expense of safety. Since Hailo is most likely not running as a mission-critical component this trade-off should be acceptable in most cases. If the database becomes corrupt it's easy to rebuild it by retraining from the input it was trained on to begin with. For performance reasons, these two are set to 'OFF' by default unless 'in_memory' is enabled. "in_memory" When set to a true value, Hailo behaves much like MegaHAL. The entire database will be kept in memory, and only written out to disk when the "save" method is called and/or when the Hailo object gets destroyed (unless you disabled "save_on_exit"). This is disabled by default. AUTHORÆvar Arnfjörð Bjarmason <avar@cpan.org>Hinrik Örn Sigurðsson, hinrik.sig@gmail.com LICENSE AND COPYRIGHTCopyright 2010 Ævar Arnfjörð Bjarmason and Hinrik Örn SigurðssonThis program is free software, you can redistribute it and/or modify it under the same terms as Perl itself.
Visit the GSP FreeBSD Man Page Interface. |