NAME
DBIx::NoSQLite - An embedded, NoSQL SQLite database with SQL indexing
VERSION
version 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
DESCRIPTION
DBIx::NoSQLite a key/value store using SQLite as the backend
Refer to DBIx::NoSQL for documentation and usage
AUTHORS
Robert Krimen <robertkrimen@gmail.com>
Yanick Champoux <yanick@cpan.org>
COPYRIGHT AND LICENSE
This 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.