Skip to content

Instantly share code, notes, and snippets.

@alexdong
Created July 26, 2010 06:34
Show Gist options
  • Save alexdong/490244 to your computer and use it in GitHub Desktop.
Save alexdong/490244 to your computer and use it in GitHub Desktop.
$ ht shell
hypertable> create table bookmarks (url);
Elapsed time: 0.03 s
hypertable> INSERT INTO bookmarks VALUES
-> ("homepage", "url", "http://alexdong.com");
Elapsed time: 0.00 s
Avg value size: 19.00 bytes
Total cells: 1
Throughput: 773.40 cells/s
Resends: 0
hypertable> INSERT INTO bookmarks VALUES
("blog", "url", "http://notes.alexdong.com");
Elapsed time: 0.00 s
Avg value size: 25.00 bytes
Total cells: 1
Throughput: 913.24 cells/s
Resends: 0
hypertable> SELECT * from bookmarks;
blog url http://notes.alexdong.com
homepage url http://alexdong.com
Elapsed time: 0.00 s
Avg value size: 22.00 bytes
Avg key size: 9.50 bytes
Throughput: 198738.17 bytes/s
Total cells: 2
Throughput: 6309.15 cells/s
hypertable> exit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment