HyperRecord integrates 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.

Using HyperRecord, manipulating data stored in Hypertable is as easy
as:
  >> a = Author.new
  >> a.ROW = 'james_joyce'
  => 'james_joyce'
  >> a.books_written = 27
  => 27
  >> a.save
  => true
  >> a = Author.find("james_joyce")
  => Author ROW: "james_joyce", books_written: 27

Documentation can be found here:
http://code.google.com/p/hypertable/wiki/HyperRecord

Source:
http://github.com/tylerkovacs/hyper_record/tree/master
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Hypertable Development" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/hypertable-dev?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to