This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
Dave Peckham (author)
Fri Oct 31 14:23:26 -0700 2008
commit 7c9c6a14ffaf7e4b124cc49df7f8d3731fbd8e69
tree 67245330fbd4c967ecd602c8ce42a3ae2872bbaf
parent 71fddc9ced1ee8005cdc522448a877e5645246cc
tree 67245330fbd4c967ecd602c8ce42a3ae2872bbaf
parent 71fddc9ced1ee8005cdc522448a877e5645246cc
hivedb /
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Wed Aug 20 16:09:08 -0700 2008 | |
| |
LICENSE.txt | Wed Apr 02 11:03:11 -0700 2008 | |
| |
README | Tue Sep 30 11:07:13 -0700 2008 | |
| |
lib/ | Tue Jan 22 15:03:01 -0800 2008 | |
| |
pom.xml | ||
| |
src/ |
README
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>









