diff options
author | Wen Heping <wen@FreeBSD.org> | 2010-12-07 01:47:56 +0000 |
---|---|---|
committer | Wen Heping <wen@FreeBSD.org> | 2010-12-07 01:47:56 +0000 |
commit | 745c29b0a24f00728966a2ebceb043e6b4c620ae (patch) | |
tree | 77d1a1b18dbbe41c025f11b71d0c90c5ddef3b49 /databases/p5-DBIx-NoSQL/pkg-descr | |
parent | 6073262b63466ee3847bc7d900406df5de215ea4 (diff) | |
download | ports-745c29b0a24f00728966a2ebceb043e6b4c620ae.tar.gz ports-745c29b0a24f00728966a2ebceb043e6b4c620ae.zip |
Notes
Diffstat (limited to 'databases/p5-DBIx-NoSQL/pkg-descr')
-rw-r--r-- | databases/p5-DBIx-NoSQL/pkg-descr | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/databases/p5-DBIx-NoSQL/pkg-descr b/databases/p5-DBIx-NoSQL/pkg-descr new file mode 100644 index 000000000000..e236e2ceb5d2 --- /dev/null +++ b/databases/p5-DBIx-NoSQL/pkg-descr @@ -0,0 +1,13 @@ +DBIx::NoSQL is a layer over DBI that presents a NoSQLish way to store and +retrieve data. It does this by using a table called __Store__. Once connected +to a database, it will detect if this table is missing and create it if +necessary. + +When writing data to the store, the data (a HASH reference) is first +serialized using JSON and then inserted/updated via DBIx::Class to (currently) +an SQLite backend. + +Retrieving data from the store is done by key lookup or by searching an +SQL-based index. Once found, the data is deserialized via JSON and returned. + +WWW: http://search.cpan.org/dist/DBIx-NoSQL/ |