Foo
Note: test note
Bar
Foo
Note: test note
Bar
| class Bear | |
| def say | |
| "Gaoooooooo!!!!" | |
| end | |
| end |
$ parallel --gnu -j 5 -k --joblog /tmp/20140417.log ruby sync.rb ::: 1 2 3 4 5
for 2.0.0-p451
$ curl -fsSL https://gist.github.com/LeonB/10503374/raw | rbenv install --patch 2.0.0-p451
for 2.1.1
curl -fsSL https://gist.github.com/mislav/a18b9d7f0dc5b9efc162.txt | rbenv install --patch 2.1.1
| # -*- encoding: utf-8 -*- | |
| require File.expand_path('../lib/example/version', __FILE__) | |
| Gem::Specification.new do |gem| | |
| gem.authors = ["John Doe"] | |
| gem.email = ["john_doe@example.org"] | |
| gem.description = %q{Write a gem description} | |
| gem.summary = %q{Write a gem summary} | |
| gem.homepage = "" |
| $ tree | |
| . | |
| ├── Gemfile | |
| ├── Gemfile.lock | |
| ├── README.rdoc | |
| ├── Rakefile | |
| ├── app | |
| │ ├── assets | |
| │ │ ├── images | |
| │ │ │ └── rails.png |
#NoSQLデータモデリング技法
原文:NoSQL Data Modeling Techniques « Highly Scalable Blog
I translated this article for study. contact matope[dot]ono[gmail] if any problem.
NoSQLデータベースはスケーラビリティ、パフォーマンス、一貫性といった様々な非機能要件から比較される。NoSQLのこの側面は実践と理論の両面からよく研究されている。ある種の非機能特性はNoSQLを利用する主な動機であり、NoSQLシステムによく適用されるCAP定理がそうであるように分散システムの基本的原則だからだ。一方で、NoSQLデータモデリングはあまり研究されておらず、リレーショナルデータベースに見られるようなシステマティックな理論に欠けている。本稿で、私はデータモデリングの視点からのNoSQLシステムファミリーの短い比較といくつかの共通するモデリングテクニックの要約を解説したい。
本稿をレビューして文法を清書してくれたDaniel Kirkdorfferに感謝したいと思う
| #!/usr/bin/env ruby | |
| # -*- coding: utf-8 -*- | |
| run "rm public/index.html" | |
| # gem | |
| gem 'mysql2' | |
| gem 'json' | |
| gem 'rspec-rails', :group => [:development, :test] |