public
Description: HiveDB is an open source project for horizontally partitioning MySQL systems.
Homepage: http://www.hivedb.org
Clone URL: git://github.com/britt/hivedb.git
Click here to lend your support to: hivedb and make a donation at www.pledgie.com !
hivedb /
name age message
file .gitignore Wed Aug 20 16:09:08 -0700 2008 Added clover directory to gitignore [britt]
file LICENSE.txt Wed Apr 02 11:03:11 -0700 2008 Ping post-commit [britt]
file README Loading commit data...
directory lib/ Tue Jan 22 15:03:01 -0800 2008 Added jacc and jta for ease of installation gi... [britt]
file pom.xml
directory src/
README
=== This is a temporary refactoring branch for the push to RC1. Check out at your own risk, most likely nothing will 
work. ===

HiveDB is a Java based system for horizontally partitioning MySQL databases.  The HiveDB architecture is optimized for
OLTP (Online transaction processing) datasets.  HiveDB provides JDBC access to the database as well as providing
Hibernate support via Hibernate-Shards.

Here is what you will need in order to use HiveDB.
    * Java 1.5+
    * Maven
    * MySQL 5.0+

* Building HiveDB from source

git clone git://github.com/britt/hivedb.git
cd hivedb
mvn install
# To install project files for your IDE use 'mvn eclipse:eclipse' or 'mvn idea:idea'

* Using HiveDB with Maven

Add the HiveDB repository to your pom.xml.
<repository>
  <id>HiveDB</id>
  <url>http://www.hivedb.org/maven/</url>
</repository>

Add HiveDB as a dependency.
<dependency>
  <groupId>org.hivedb</groupId>
  <artifactId>hivedb</artifactId>
  <version>0.9.6-SNAPSHOT</version>
</dependency>