|
NAMEDBIx::NoSQLite - An embedded, NoSQL SQLite database with SQL indexing VERSIONversion 0.0021 SYNOPSIS use DBIx::NoSQLite;
my $store = DBIx::NoSQLite->connect( 'store.sqlite' );
$store->set( ... );
$store->get( ... );
$store->exists( ... );
$store->delete( ... );
$store->search( ... );
...
Refer to DBIx::NoSQL DESCRIPTIONDBIx::NoSQLite a key/value store using SQLite as the backend Refer to DBIx::NoSQL for documentation and usage AUTHORS
COPYRIGHT AND LICENSEThis software is copyright (c) 2017 by Robert Krimen. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
|