Skip to content
/ tuple Public

Fast, binary-sortable serialization for arrays of simple Ruby types.

License

Notifications You must be signed in to change notification settings

ruby-bdb/tuple

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

56 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Tuple

Tuple provides fast, binary-sortable serialization for arrays of simple Ruby types. This means you do not have to deserialize your tuples to store them. This leads to significant performance benifits when using Tuples as keys for a BTree.

A Tuple is just an Array of any number of simple Ruby types. The following types are supported (listed in ascending sort order):

  1. NilClass

  2. FalseClass

  3. Integer (Fixnum or Bignum)

  4. String

  5. Symbol

  6. True

Usage:

require 'tuple'

data = Tuple.dump([1, -43, :foo, "bar", true, false, nil])
=> "\000\000\020\000\000\000\000\001..."
Tuple.load(data)
=> [1, -43, :foo, "bar", true, false, nil]

Install:

gem install tuple

License:

Copyright © 2009 Justin Balthrop; Published under The MIT License, see LICENSE

About

Fast, binary-sortable serialization for arrays of simple Ruby types.

Resources

License

Stars

Watchers

Forks

Packages

No packages published