From b816c9e1d2c1df116df1048755c05c3668f777ce Mon Sep 17 00:00:00 2001 From: miwi Date: Thu, 12 Mar 2009 19:21:04 +0000 Subject: buzhug is a fast, pure-Python database engine, using a syntax that Python programmers should find very intuitive. The data is stored and accessed on disk (it is not an in-memory database); the implementation has been designed to make all operations, and especially selection, as fast as possible with an interpreted language. The database is implemented as a Python iterator, yielding objects whose attributes are the fields defined when the base is created ; therefore, requests can be expressed as list comprehensions or generator expressions, instead of SQL queries. WWW: http://buzhug.sourceforge.net/ PR: ports/132278 Submitted by: Wen Heping --- databases/Makefile | 1 + 1 file changed, 1 insertion(+) (limited to 'databases/Makefile') diff --git a/databases/Makefile b/databases/Makefile index 0d37ce4ba661..e45e9ea13481 100644 --- a/databases/Makefile +++ b/databases/Makefile @@ -13,6 +13,7 @@ SUBDIR += aolserver-nsmysql SUBDIR += aolserver-nspostgres SUBDIR += bbdb + SUBDIR += buzhug SUBDIR += cdb SUBDIR += clip SUBDIR += couchdb -- cgit