forked from tylerkovacs/hyper_record
-
Notifications
You must be signed in to change notification settings - Fork 1
/
README
45 lines (31 loc) · 1.27 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
hyper_record
============
Hypertable is a high performance distributed data storage system designed
to support applications requiring maximum performance, scalability,
and reliability. Modeled after Google's well known Bigtable project,
Hypertable is designed to manage the storage and processing of information
on a large cluster of commodity servers, providing resilience to machine
and component failures.
HyperRecord exists to integrate Hypertable with ActiveRecord (the Ruby on
Rails ORM) allowing objects to be stored in Hypertable while maintaining
as many of the built-in ORM features as possible.
See:
- http://www.hypertable.org
- http://code.google.com/p/hypertable/wiki/HyperRecord
INSTALLATION
============
1. Install HyperRecord gem (http://rubygems.org/gems/hyper_record)
gem install hyper_record
2. Configure Hypertable Adapter by adding an entry to config/database.yml
that points to an instance of the Hypertable Thrift Broker (uses port
38080 by default).
hypertable:
adapter: hypertable
host: localhost
port: 38080
NOTE: HyperRecord requires Thrift SVN revision 765279 or later.
3. Add the following to the bottom of config/environment.rb:
require 'hyper_record'
COPYRIGHT
=========
Copyright (c) 2010 tylerkovacs. See LICENSE for details.