aboutsummaryrefslogtreecommitdiff
path: root/databases/p5-DBIx-NoSQL
Commit message (Collapse)AuthorAgeFilesLines
* Update to 0.0020.Anton Berezin2013-02-012-3/+3
| | | | | | | Changes: http://search.cpan.org/dist/DBIx-NoSQL/Changes Notes: svn path=/head/; revision=311366
* - Update to 0.0019Wen Heping2013-01-282-9/+5
| | | | | | | | | Changes: http://cpansearch.perl.org/src/ROKR/DBIx-NoSQL-0.0019/Changes - Trim Makefile headers - Reset maintainer to perl@ Notes: svn path=/head/; revision=311124
* - Add missing BUILD_DEPENDS to silence build warningsSteve Wills2012-02-191-0/+9
| | | | | | | | | | | - Add TEST_DEPENDS to enable testing PR: ports/164219 Submitted by: swills (myself) Approved by: maintainer timeout (wen, > 1 month) Notes: svn path=/head/; revision=291835
* - Update to 0.0018Wen Heping2012-01-082-3/+3
| | | | | | | ChangeLog: http://cpansearch.perl.org/src/ROKR/DBIx-NoSQL-0.0018/Changes Notes: svn path=/head/; revision=288727
* - Update to 0.0017Wen Heping2011-04-132-3/+3
| | | | | | | ChangeLog: http://cpansearch.perl.org/src/ROKR/DBIx-NoSQL-0.0017/Changes Notes: svn path=/head/; revision=272669
* - Update to 0.0015Wen Heping2010-12-132-3/+3
| | | | | | | | | | ChangeLog: http://search.cpan.org/src/ROKR/DBIx-NoSQL-0.0015/Changes PR: ports/153057 Submitted by: pgollucci@ Notes: svn path=/head/; revision=266167
* DBIx::NoSQL is a layer over DBI that presents a NoSQLish way to store andWen Heping2010-12-074-0/+65
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/ Notes: svn path=/head/; revision=265766