From owner-cvs-ports@FreeBSD.ORG Tue Dec 7 01:47:56 2010 Return-Path: Delivered-To: cvs-ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4CDB7106564A; Tue, 7 Dec 2010 01:47:56 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3ECAA8FC16; Tue, 7 Dec 2010 01:47:56 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id oB71luQ9083765; Tue, 7 Dec 2010 01:47:56 GMT (envelope-from wen@repoman.freebsd.org) Received: (from wen@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id oB71lubl083764; Tue, 7 Dec 2010 01:47:56 GMT (envelope-from wen) Message-Id: <201012070147.oB71lubl083764@repoman.freebsd.org> From: Wen Heping Date: Tue, 7 Dec 2010 01:47:56 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/databases Makefile ports/databases/p5-DBIx-NoSQL Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Dec 2010 01:47:56 -0000 wen 2010-12-07 01:47:56 UTC FreeBSD ports repository Modified files: databases Makefile Added files: databases/p5-DBIx-NoSQL Makefile distinfo pkg-descr pkg-plist Log: 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/ Revision Changes Path 1.923 +1 -0 ports/databases/Makefile 1.1 +31 -0 ports/databases/p5-DBIx-NoSQL/Makefile (new) 1.1 +2 -0 ports/databases/p5-DBIx-NoSQL/distinfo (new) 1.1 +13 -0 ports/databases/p5-DBIx-NoSQL/pkg-descr (new) 1.1 +19 -0 ports/databases/p5-DBIx-NoSQL/pkg-plist (new)